/* ----------------- Base Styles ----------------- */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    background-image: url('../assets/Backgrounds/BG-1.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #287DFF;
    background-blend-mode: multiply;
    font-size: 20px;
    color: #fff;
}

/* ----------------- Menu Styles ----------------- */
#menu {
    position: absolute;
    top: 30px;
    right: 30px;
}

#menu a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    padding: 16px 22px;
    background: rgba(0,0,0,0.5);
    border-radius: 6px;
    transition: 0.2s;
    font-size: 22px;
}

#menu a:hover {
    background: rgba(0,0,0,0.7);
}

/* ----------------- Form Container ----------------- */
.form-container {
    width: 800px;
    min-height: 550px;
    padding: 60px;
    margin: 60px auto;
    background: rgba(0,0,0,0.7);
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(0,0,0,0.6);
    text-align: center;
}

.form-container h1 {
    font-size: 36px;
    margin-bottom: 40px;
}

.form-container p,
.form-container ol {
    font-size: 22px;
    line-height: 1.6;
    margin: 15px 0;
}

/* ----------------- Inputs & Buttons ----------------- */
.form-container input {
    width: 85%;
    padding: 20px;
    margin: 15px 0;
    font-size: 20px;
    border-radius: 12px;
    border: none;
}

.form-container button {
    padding: 20px 40px;
    font-size: 22px;
    border-radius: 12px;
    border: none;
    background-color: #287DFF;
    color: #fff;
    cursor: pointer;
    transition: 0.2s;
}

.form-container button:hover {
    background-color: #1f5ecc;
}

/* ----------------- Studio Logos ----------------- */
.studio-footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    box-sizing: border-box;
    z-index: 5;
}

.studio-logo {
    width: 150px;
    height: auto;
    opacity: 0.8;
}

/* ----------------- AM Animation ----------------- */
.am-animation {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px auto;
    background-image: url('sheets/IntroSheet.png');
    background-repeat: no-repeat;
    image-rendering: pixelated;
    animation: amFrames 0.8s steps(10) infinite;
}

@keyframes amFrames {
    from { background-position: 0 0; }
    to { background-position: -800px 0; }
}