/* Global reset and typography */
* {
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    margin: 0;
    background-color: #f4f6f8;
    color: #222;
}

/* Header */

#header {
    position: relative;
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #0a1a2f, #1f4fd8);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

#header::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at top right,
        rgba(255, 255, 255, 0.15),
        transparent 60%
    );
}

#header h1 {
    position: relative;
    margin: 0;
    color: #ffffff;
    font-size: 64px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    z-index: 1;
}


/* Main title */
h1 {
    margin: 0;
    color: #ffffff;
    font-size: 64px;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
}

/* Background loop container */
#backgroundloop {
    position: absolute;
    top: 204px;
    width: 100%;
    background-color: #0a1a2f;
}

/* Background image / screenshot */
#sshot {
    width: 100%;
    height: 600px;
    object-fit: cover;
    animation: transf 1s ease-in-out;
}

/* Notification bar */
#noti {
    position: absolute;
    top: 808px;
    width: 100%;
    height: 50px;
    background-color: #c0392b;
    color: #ffffff;
    font-size: 22px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Main content area */
#main {
    position: absolute;
    top: 858px;
    width: 100%;
    height: 200px;
    background-color: #e5e8eb;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Form container */
form {
    background-color: #ffffff;
    padding: 25px 30px;
    border-radius: 14px;
    border: 1px solid #d0d4d9;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
    width: fit-content;
}

/* Text input */
input[type="text"] {
    width: 440px;
    height: 44px;
    text-align: center;
    font-size: 26px;
    font-style: italic;
    color: #1f4fd8;
    border-radius: 10px;
    border: 1px solid #c2c7cc;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input[type="text"]:focus {
    border-color: #1f4fd8;
    box-shadow: 0 0 0 2px rgba(31, 79, 216, 0.2);
}

/* Submit button */
#send {
    margin-top: 15px;
    width: 219px;
    height: 54px;
    font-size: 26px;
    font-weight: 600;
    background-color: #1f4fd8;
    color: #ffffff;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

#send:hover {
    background-color: #183db0;
}

#send:active {
    transform: scale(0.97);
}

/* Footer */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 23px;
    background-color: #2c2f33;
    color: #ffffff;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}
