/* Block Craft Font */
@font-face {
    font-family: 'Block Craft';
    src: url('./block-craft-font/BlockCraftMedium-PVLzd.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Inconsolata Font */
@font-face {
    font-family: 'Inconsolata';
    src: url('./Inconsolata/Inconsolata-VariableFont_wdth,wght.ttf') format('truetype');
    font-weight: 200 900;
    font-stretch: 50% 200%;
    font-style: normal;
    font-display: swap;
}

/* 8-bit Fantasy Theme Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inconsolata', monospace;
    margin: 0;
    padding: 0;
    overflow-y: auto; /* Enable scrolling by default */
    scroll-behavior: smooth;
}

/* Game page specific styles - homepage only */
body.game-page {
    background: linear-gradient(135deg, rgba(126, 195, 230, 1) 0%, rgba(9, 16, 99, 1) 100%);
    overflow: hidden;
    user-select: none;
}

/* Form pages need scrolling and text selection */
body.form-page {
    overflow-y: auto;
    user-select: text;
    background: #000000;
}

/* Landing page styles - new homepage */
body.landing-page {
    background: #000000;
    overflow-y: auto;
    user-select: text;
}

/* Removed gradient animation - using bg.png background now */

/* Landing Section Styles */
#landing-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 150px;
    position: relative;
    background: transparent;
    overflow: hidden;
}



.landing-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.landing-logo {
    width: 200px;
    height: auto;
    margin-bottom: 0px;
    margin-top: -20px;
}

.nav-logo {
    height: 40px;
    width: auto;
    margin-left: 10px;
    vertical-align: middle;
}

.landing-title {
    font-family: 'Block Craft', cursive, serif;
    font-size: 4rem;
    color: #ffffff;
    margin: 0;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.landing-date {
    font-family: 'Orbit', sans-serif;
    font-size: 1rem;
    color: #ffffff;
    margin: 10px 0 0 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

@keyframes titleGradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes titleSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.landing-subtitle {
    font-family: 'Inconsolata', monospace;
    font-size: 1.8rem;
    color: #87ceeb;
    margin: 20px 0 50px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    animation: subtitleFadeIn 2s ease-out 0.5s both;
    font-weight: 300;
    letter-spacing: 1px;
}

@keyframes subtitleFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.landing-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    animation: buttonsSlideUp 2.5s ease-out 1s both;
}

@keyframes buttonsSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.landing-btn {
    padding: 15px 40px;
    font-family: 'Inconsolata', monospace;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.landing-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.landing-btn:hover::before {
    left: 100%;
}

.contact-btn {
    background: transparent;
    color: #87ceeb;
    border-color: #87ceeb;
}

.contact-btn:hover {
    background: #87ceeb;
    color: #1a1a2e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(135, 206, 235, 0.4);
}

.apply-btn {
    background: linear-gradient(135deg, rgba(126, 195, 230, 1) 0%, rgba(9, 16, 99, 1) 100%);
    color: #ffffff;
    border-color: rgba(126, 195, 230, 1);
}

.apply-btn:hover {
    background: linear-gradient(135deg, rgba(136, 205, 240, 1) 0%, rgba(19, 26, 109, 1) 100%);
    box-shadow: 0 8px 25px rgba(126, 195, 230, 0.5);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
}

.scroll-arrow {
    font-size: 2rem;
    color: #87ceeb;
    margin-bottom: 10px;
}

.scroll-indicator p {
    color: #87ceeb;
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.6;
        transform: translateX(-50%) translateY(0px);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) translateY(5px);
    }
}

/* Game Section Styles */
#game-section {
    min-height: 100vh;
    background: #1a1a2e;
    position: relative;
    padding-top: 0;
}

#game-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 20%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.2) 80%, transparent 100%);
    z-index: 10;
    pointer-events: none;
}

/* Mobile responsiveness for landing section */
@media screen and (max-width: 768px) {
    .landing-title {
        font-size: 3.5rem;
    }
    
    .landing-subtitle {
        font-size: 1.3rem;
        margin: 15px 0 40px 0;
    }
    
    .landing-buttons {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .landing-btn {
        padding: 12px 35px;
        font-size: 1.1rem;
        min-width: 150px;
    }
}

@media screen and (max-width: 480px) {
    .landing-title {
        font-size: 2.8rem;
    }
    
    .landing-subtitle {
        font-size: 1.1rem;
    }
    
    .landing-btn {
        padding: 10px 30px;
        font-size: 1rem;
    }
}

/* Background for all non-homepage pages */
body:not(.game-page):not(.landing-page) {
    background: #000000;
}

/* Navigation Bar */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: #000000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    font-family: 'Block Craft', cursive, serif !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

/* Force Block Craft font on all navbar elements */
#navbar *, #navbar a, .nav-title, .nav-link {
    font-family: 'Block Craft', cursive, serif !important;
}

.nav-left {
    display: flex;
    align-items: center;
}

.nav-title {
    font-family: 'Block Craft', cursive, serif !important;
    font-size: 32px;
    color: #ffffff;
    font-weight: bold;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-title:hover {
    color: #cccccc;
    transform: translateY(-1px);
}

.nav-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-link {
    font-family: 'Block Craft', cursive, serif !important;
    font-size: 18px;
    color: #cccccc;
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.nav-link:active {
    transform: translateY(0);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
}

.hamburger-line {
    width: 30px;
    height: 4px;
    background: #ffffff;
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Hamburger Animation */
.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    #navbar {
        padding: 0 25px;
    }
    
    .nav-right {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 320px;
        height: calc(100vh - 80px);
        background: #000000;
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 25px;
        gap: 25px;
        transition: right 0.3s ease;
        border-left: 3px solid #333;
        box-shadow: -8px 0 20px rgba(0, 0, 0, 0.5);
    }
    
    .nav-right.active {
        right: 0;
    }
    
    .nav-link {
        width: 100%;
        padding: 18px 25px;
        font-size: 20px;
        border-bottom: 2px solid #333;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .hamburger {
        display: flex;
    }
}

@media screen and (max-width: 480px) {
    .nav-title {
        font-size: 28px;
    }
    
    .nav-right {
        width: 280px;
    }
    
    #navbar {
        padding: 0 20px;
    }
}

/* Page Content Styles */
#page-container {
    padding-top: 80px; /* Account for fixed navbar */
    min-height: 100vh;
    color: #ffffff;
    background: #000000; /* Change from gradient to solid black */
}

/* Only homepage gets the gradient background */
body.game-page #page-container {
    background: linear-gradient(135deg, rgba(126, 195, 230, 1) 0%, rgba(9, 16, 99, 1) 100%);
}

#page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 30px;
    text-align: center;
}

#page-content h1 {
    font-family: 'Block Craft', cursive, serif;
    font-size: 48px;
    color: #ffffff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: normal;
}

#page-content p {
    font-family: 'Inconsolata', monospace;
    font-size: 18px;
    color: #cccccc;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    #page-content {
        padding: 40px 20px;
    }
    
    #page-content h1 {
        font-size: 37px;
    }
    
    #page-content p {
        font-size: 17px;
    }
}

#game-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, rgba(126, 195, 230, 1) 0%, rgba(9, 16, 99, 1) 100%);
    padding-top: 80px; /* Account for fixed navbar */
}

/* Map Title Overlay */
#map-title-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    pointer-events: none; /* Allow clicking through to the game */
    transition: opacity 1s ease-out;
}

.map-title-content {
    text-align: center;
    animation: mapTitleFadeIn 2s ease-out;
}

.map-main-title {
    font-family: 'Inconsolata', monospace;
    font-size: 1.5rem;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 5px;
    font-weight: 400;
}

.map-subtitle {
    font-family: 'Inconsolata', monospace;
    font-size: 1.2rem;
    color: #87ceeb;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 400;
    margin: 0;
}

@keyframes mapTitleFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Game Canvas */
#game-canvas {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

/* Mobile Controls */
#mobile-controls {
    position: fixed;
    bottom: 10px;
    right: 20px;
    display: none;
    z-index: 100;
    /* Ensure touch events work properly */
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.dpad-cross {
    position: relative;
    width: 180px;
    height: 180px;
    margin-bottom: 20px;
}

.dpad-btn {
    position: absolute;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    user-select: none;
    transition: all 0.1s;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
}

.dpad-btn:active,
.dpad-btn.pressed {
    background: rgba(255, 255, 255, 0.1);
}

/* Keep arrows in exact same position when pressed - no movement */
.dpad-btn.pressed .arrow-left {
    transform: rotate(0deg);
}

.dpad-btn.pressed .arrow-right {
    transform: rotate(180deg);
}

.dpad-btn.pressed .arrow-up {
    transform: rotate(90deg);
}

.dpad-btn.pressed .arrow-down {
    transform: rotate(-90deg);
}

/* Cross-shaped layout - buttons touch/overlap */
.dpad-up {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 90px;
}

.dpad-down {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 90px;
}

.dpad-left {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 90px;
    height: 60px;
}

.dpad-right {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 90px;
    height: 60px;
}

/* Arrow Icon Styles */
.arrow-icon {
    width: 100px;
    height: 100px;
    pointer-events: none;
    transition: transform 0.1s ease;
    transform-origin: center center;
}

/* Arrow Direction Rotations */
.arrow-left {
    transform: rotate(0deg); /* Original left-pointing direction */
}

.arrow-right {
    transform: rotate(180deg); /* Rotate 180° for right */
}

.arrow-up {
    transform: rotate(90deg); /* Swapped: now pointing down direction for up */
}

.arrow-down {
    transform: rotate(-90deg); /* Swapped: now pointing up direction for down */
}



/* Room Modal */
#room-modal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 200;
    transition: opacity 0.3s ease-in-out;
}

#room-modal.hidden {
    opacity: 0;
    pointer-events: none;
}

.room-content {
    background: #2c1810;
    border: 4px solid #8b4513;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    height: 80%;
    max-height: 500px;
    padding: 20px;
    position: relative;
    overflow-y: auto;
    animation: roomEnterAnimation 0.5s ease-out;
}

@keyframes roomEnterAnimation {
    from {
        transform: scale(0.8) rotateY(10deg);
        opacity: 0;
    }
    to {
        transform: scale(1) rotateY(0deg);
        opacity: 1;
    }
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: #87CEEB;
    border: 2px solid #87CEEB;
    color: white;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-family: 'Inconsolata', monospace;
    font-size: 12px;
}

.close-btn:hover {
    background: #87CEEB;
}

#room-title {
    color: #87CEEB;
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 2px 2px 0px #8b4513;
    animation: titleSlideIn 0.7s ease-out 0.2s both;
}

@keyframes titleSlideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

#room-body {
    color: #f0f0f0;
    font-size: 10px;
    line-height: 1.6;
    animation: contentFadeIn 0.8s ease-out 0.4s both;
}

@keyframes contentFadeIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

#player-in-room {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 32px;
    height: 32px;
    background: #4169e1;
    border: 2px solid #000;
    animation: playerBounce 2s ease-in-out infinite;
}

@keyframes playerBounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
}



/* Responsive Design */
@media (max-width: 768px) {
    .room-content {
        width: 95%;
        height: 85%;
        padding: 15px;
    }
    
    #room-title {
        font-size: 13px;
    }
    
    #room-body {
        font-size: 9px;
    }
    
    .map-main-title {
        font-size: 1.3rem;
    }
    
    .map-subtitle {
        font-size: 1.1rem;
    }
}



/* Show mobile controls only on mobile/tablet screen sizes */
@media (max-width: 768px) {
    #mobile-controls {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        /* Force visibility for debugging */
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        /* Ensure right positioning on mobile */
        right: 20px !important;
        left: auto !important;
        transform: none !important;
    }
    

}

/* Tablet size adjustments */
@media (max-width: 768px) and (min-width: 481px) {
    .dpad-cross {
        width: 200px;
        height: 200px;
    }
    
    .arrow-icon {
        width: 120px;
        height: 120px;
    }
    
    .dpad-up, .dpad-down { width: 70px; height: 100px; }
    .dpad-left, .dpad-right { width: 100px; height: 70px; }
}

/* Small mobile adjustments */
@media (max-width: 480px) {
    .dpad-cross {
        width: 160px;
        height: 160px;
    }
    
    .arrow-icon {
        width: 90px;
        height: 90px;
    }
    
    .dpad-up, .dpad-down { width: 55px; height: 80px; }
    .dpad-left, .dpad-right { width: 80px; height: 55px; }
}

/* Utility Classes */
.hidden {
    display: none !important;
}

#character-sprite, #character-sprite-static {
    position: absolute;
    top: 0;
    z-index: 50;
    pointer-events: none;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    /* Realistic diagonal shadow - light source from upper-left */
    filter: drop-shadow(8px -6px 12px rgba(0, 0, 0, 0.4)) 
            drop-shadow(12px -8px 20px rgba(0, 0, 0, 0.2));
}

.pixel-perfect {
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
} 

/* Apply Page Styles */
#apply-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

#apply-content h1 {
    font-family: 'Block Craft', cursive, serif;
    font-size: 48px;
    color: #ffffff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: normal;
}

#apply-content p {
    font-family: 'Inconsolata', monospace;
    font-size: 20px;
    color: #cccccc;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

#form-container {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid #dce8f2;
    border-image: linear-gradient(90deg, rgba(220, 232, 242, 1) 3%, rgba(119, 196, 237, 1) 95%) 1;
    border-radius: 12px;
    padding: 20px;
    margin: 0 auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

#application-form {
    text-align: left;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-family: "Orbit", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.4;
}

.required {
    color: #87CEEB;
    font-weight: bold;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="number"],
.form-group input[type="url"],
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid transparent;
    border-image: linear-gradient(90deg, rgba(220, 232, 242, 1) 3%, rgba(119, 196, 237, 1) 95%) 1;
    border-radius: 8px;
    color: #ffffff;
    font-family: "Orbit", sans-serif;
    font-weight: 400;
    font-size: 14px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="number"]:focus,
.form-group input[type="url"]:focus,
.form-group textarea:focus {
    border-color: #87CEEB;
    outline: none;
    box-shadow: 0 0 10px rgba(135, 206, 235, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
    font-family: 'Inconsolata', monospace;
}

.radio-group,
.checkbox-group {
    margin-top: 10px;
}

.radio-label,
.checkbox-label {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    cursor: pointer;
    font-family: "Orbit", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #cccccc;
    line-height: 1.4;
}

.radio-label input[type="radio"],
.checkbox-label input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
}

.radio-custom,
.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #77c4ed;
    border-radius: 50%;
    margin-right: 12px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-custom {
    border-radius: 4px;
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #77c4ed;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    color: #77c4ed;
    font-size: 14px;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Focus styles for accessibility */
.radio-label input[type="radio"]:focus + .radio-custom {
    background: #dce8f2;
    background: linear-gradient(90deg, rgba(220, 232, 242, 1) 3%, rgba(119, 196, 237, 1) 95%);
    box-shadow: 0 0 8px rgba(119, 196, 237, 0.6);
    border-color: #77c4ed;
}

.checkbox-label input[type="checkbox"]:focus + .checkbox-custom {
    background: #dce8f2;
    background: linear-gradient(90deg, rgba(220, 232, 242, 1) 3%, rgba(119, 196, 237, 1) 95%);
    box-shadow: 0 0 8px rgba(119, 196, 237, 0.6);
    border-color: #77c4ed;
}

/* Hover styles */
.radio-label:hover .radio-custom,
.checkbox-label:hover .checkbox-custom {
    border-color: #77c4ed;
    transform: scale(1.05);
}

/* Invalid field styling */
.form-group input:invalid,
.form-group textarea:invalid {
    border-color: #87CEEB;
}

.form-group input:invalid:focus,
.form-group textarea:invalid:focus {
    border-color: #87CEEB;
    box-shadow: 0 0 10px rgba(135, 206, 235, 0.3);
}

.agreement-text {
    line-height: 1.6;
}

.agreement-text strong {
    color: #87CEEB;
}

.submit-message {
    font-family: "Orbit", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #cccccc;
    text-align: center;
    margin-bottom: 25px;
    line-height: 1.6;
    font-style: italic;
}

.submit-btn {
    width: 100%;
    padding: 16px 24px;
    background: #dce8f2;
    background: linear-gradient(90deg, rgba(220, 232, 242, 1) 3%, rgba(119, 196, 237, 1) 95%);
    border: 2px solid;
    border-image: linear-gradient(90deg, rgba(220, 232, 242, 1) 3%, rgba(119, 196, 237, 1) 95%) 1;
    border-radius: 8px;
    color: #ffffff;
    font-family: 'Inconsolata', monospace;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: linear-gradient(90deg, rgba(119, 196, 237, 1) 3%, rgba(220, 232, 242, 1) 95%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(119, 196, 237, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Success/Error Messages */
.form-message {
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-family: 'Inconsolata', monospace;
    font-size: 16px;
    text-align: center;
}

.form-message.success {
    background: rgba(46, 125, 50, 0.2);
    border: 2px solid #4caf50;
    color: #4caf50;
}

.form-message.error {
    background: rgba(211, 47, 47, 0.2);
    border: 2px solid #87CEEB;
    color: #87CEEB;
}

/* Thank You Page Styles */
#thank-you-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.thank-you-message h1 {
    font-family: 'Block Craft', cursive, serif;
    font-size: 48px;
    color: #ffffff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.main-message {
    font-family: 'Inconsolata', monospace;
    font-size: 20px;
    color: #87CEEB;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.next-steps {
    margin: 50px 0;
}

.next-steps h2 {
    font-family: 'Block Craft', cursive, serif;
    font-size: 32px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 30px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    text-align: left;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid #444;
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
}

.step-item:hover {
    border-color: #87CEEB;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.2);
}

.step-number {
    background: linear-gradient(135deg, #87CEEB 0%, #87CEEB 100%);
    color: #000000;
    font-family: 'Inconsolata', monospace;
    font-size: 24px;
    font-weight: bold;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-text h3 {
    font-family: 'Block Craft', cursive, serif;
    font-size: 18px;
    color: #87CEEB;
    margin-bottom: 10px;
}

.step-text p {
    font-family: 'Inconsolata', monospace;
    font-size: 14px;
    color: #cccccc;
    line-height: 1.5;
}

.cta-section {
    margin: 50px 0;
}

.cta-text {
    font-family: 'Inconsolata', monospace;
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 30px;
}

.button-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-block;
    padding: 16px 24px;
    font-family: 'Inconsolata', monospace;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #87CEEB 0%, #87CEEB 100%);
    color: #000000;
    border: 2px solid #87CEEB;
}

.cta-btn.primary:hover {
    background: linear-gradient(135deg, #87CEEB 0%, #87CEEB 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.4);
}

.cta-btn.secondary {
    background: transparent;
    color: #87CEEB;
    border: 2px solid #87CEEB;
}

.cta-btn.secondary:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.2);
}

.contact-info {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #444;
}

.contact-info p {
    font-family: 'Inconsolata', monospace;
    font-size: 16px;
    color: #cccccc;
}

.contact-info a {
    color: #87CEEB;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ADD8E6;
    text-decoration: underline;
}

/* Responsive Design for Thank You Page */
@media screen and (max-width: 768px) {
    #thank-you-content {
        padding: 30px 15px;
    }

    .thank-you-message h1 {
        font-size: 37px;
    }

    .main-message {
        font-size: 19px;
    }

    .next-steps h2 {
        font-size: 29px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .step-item {
        padding: 20px;
    }

    .button-group {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

/* About Page Animated Background */
.about-background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.about-geometric-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
}

/* Subtle animated lines */
.about-line-1 {
    animation: aboutLineFloat1 25s ease-in-out infinite;
}

.about-line-2 {
    animation: aboutLineFloat2 30s ease-in-out infinite;
}

.about-line-3 {
    animation: aboutLineFloat3 35s ease-in-out infinite;
}

.about-line-4 {
    animation: aboutLineFloat4 28s ease-in-out infinite;
}

.about-line-5 {
    animation: aboutLineFloat5 32s ease-in-out infinite;
}

.about-line-6 {
    animation: aboutLineShine1 26s ease-in-out infinite;
}

.about-line-7 {
    animation: aboutLineShine2 29s ease-in-out infinite;
}

.about-line-8 {
    animation: aboutLineShine3 33s ease-in-out infinite;
}

/* Subtle animated shapes */
.about-shape-1 {
    animation: aboutShapeRotate1 40s linear infinite;
    transform-origin: center;
}

.about-shape-2 {
    animation: aboutShapeRotate2 45s linear infinite;
    transform-origin: center;
}

.about-shape-3 {
    animation: aboutShapeRotate3 50s linear infinite;
    transform-origin: center;
}

/* Keyframes for subtle animations */
@keyframes aboutLineFloat1 {
    0%, 100% { opacity: 0.6; transform: translateY(0px); }
    50% { opacity: 0.3; transform: translateY(-2px); }
}

@keyframes aboutLineFloat2 {
    0%, 100% { opacity: 0.4; transform: translateY(0px); }
    50% { opacity: 0.6; transform: translateY(1px); }
}

@keyframes aboutLineFloat3 {
    0%, 100% { opacity: 0.5; transform: translateY(0px); }
    50% { opacity: 0.2; transform: translateY(-1px); }
}

@keyframes aboutLineFloat4 {
    0%, 100% { opacity: 0.3; transform: translateX(0px); }
    50% { opacity: 0.5; transform: translateX(1px); }
}

@keyframes aboutLineFloat5 {
    0%, 100% { opacity: 0.4; transform: translateY(0px) translateX(0px); }
    50% { opacity: 0.2; transform: translateY(1px) translateX(-1px); }
}

/* Shining line animations */
@keyframes aboutLineShine1 {
    0%, 100% { opacity: 0.5; filter: drop-shadow(0 0 2px rgba(174, 204, 238, 0.3)); }
    25% { opacity: 0.8; filter: drop-shadow(0 0 6px rgba(174, 204, 238, 0.8)); }
    50% { opacity: 0.3; filter: drop-shadow(0 0 3px rgba(174, 204, 238, 0.4)); }
    75% { opacity: 0.7; filter: drop-shadow(0 0 5px rgba(148, 187, 233, 0.6)); }
}

@keyframes aboutLineShine2 {
    0%, 100% { opacity: 0.6; filter: drop-shadow(0 0 3px rgba(148, 187, 233, 0.4)); }
    33% { opacity: 0.9; filter: drop-shadow(0 0 8px rgba(148, 187, 233, 0.9)); }
    66% { opacity: 0.4; filter: drop-shadow(0 0 2px rgba(174, 204, 238, 0.3)); }
}

@keyframes aboutLineShine3 {
    0%, 100% { opacity: 0.4; filter: drop-shadow(0 0 2px rgba(174, 204, 238, 0.2)); }
    50% { opacity: 0.8; filter: drop-shadow(0 0 10px rgba(174, 204, 238, 1)); }
}

@keyframes aboutShapeRotate1 {
    0% { transform: rotate(0deg) scale(1); opacity: 0.15; }
    50% { transform: rotate(180deg) scale(1.05); opacity: 0.08; }
    100% { transform: rotate(360deg) scale(1); opacity: 0.15; }
}

@keyframes aboutShapeRotate2 {
    0% { transform: rotate(0deg) scale(1); opacity: 0.12; }
    50% { transform: rotate(-180deg) scale(0.95); opacity: 0.18; }
    100% { transform: rotate(-360deg) scale(1); opacity: 0.12; }
}

@keyframes aboutShapeRotate3 {
    0% { transform: rotate(0deg) scale(1); opacity: 0.18; }
    50% { transform: rotate(180deg) scale(1.1); opacity: 0.1; }
    100% { transform: rotate(360deg) scale(1); opacity: 0.18; }
}

/* About Page Styles */
#about-content {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 55px 20px 40px 20px; /* Further reduced space between navbar and About title */
    position: relative;
}

/* FORCE NO ANIMATIONS ON ABOUT PAGE TEXT ONLY */
#about-content .about-title,
#about-content .about-description,
#about-content .about-description p,
#about-content .about-section,
#about-content .about-section p,
#about-content .about-section h2,
#about-content .about-text-container,
#about-content .about-text-container::before {
    animation: none !important;
    animation-duration: 0s !important;
    animation-delay: 0s !important;
    animation-iteration-count: 1 !important;
    animation-fill-mode: none !important;
    transition: none !important;
    transform: none !important;
}

.about-main-content {
    max-width: 800px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.about-title {
    font-family: 'Block Craft', cursive, serif;
    font-size: 48px;
    color: #ffffff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: normal;
}

.about-text-container {
    background: rgba(0, 0, 0, 0.3);
    border: 3px solid transparent;
    border-image: linear-gradient(90deg, rgba(220, 232, 242, 1) 3%, rgba(119, 196, 237, 1) 95%) 1;
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(119, 196, 237, 0.2);
    position: relative;
    overflow: hidden;
}

.about-text-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(119, 196, 237, 0.1), transparent);
    border-radius: 15px;
    z-index: -1;
}

.about-description {
    margin-bottom: 60px;
}

.about-description p {
    font-family: "Orbit", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    color: #ffffff;
    line-height: 1.8;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin: 0 0 25px 0;
    opacity: 1;
}

.about-sections {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-section {
    text-align: left;
}

.about-section:nth-child(2) {
}

.about-section h2 {
    font-family: 'Block Craft', cursive, serif;
    font-size: 24px;
    color: #87CEEB;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 15px;
    font-weight: bold;
}

.about-section p {
    font-family: "Orbit", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    color: #ffffff;
    line-height: 1.7;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin: 0;
}

/* Responsive design for about page */
@media screen and (max-width: 768px) {
    #about-content {
        padding: 45px 15px 30px 15px;
        background-attachment: scroll; /* Better performance on mobile */
    }

    .about-main-content {
        max-width: 100%;
    }

    .about-title {
        font-size: 37px;
        margin-bottom: 30px;
    }

    .about-text-container {
        padding: 30px;
    }

    .about-description p {
        font-size: 17px;
        line-height: 1.6;
    }

    .about-section h2 {
        font-size: 21px;
    }

    .about-section p {
        font-size: 15px;
        line-height: 1.6;
    }

    .about-sections {
        gap: 30px;
    }
}

@media screen and (max-width: 480px) {
    #about-content {
        padding: 60px 10px 20px 10px;
    }

    .about-title {
        font-size: 29px;
        margin-bottom: 25px;
    }

    .about-text-container {
        padding: 25px;
    }

    .about-description {
        margin-bottom: 40px;
    }

    .about-description p {
        font-size: 16px;
    }

    .about-section h2 {
        font-size: 19px;
        margin-bottom: 10px;
    }

    .about-section p {
        font-size: 14px;
    }

    .about-sections {
        gap: 25px;
    }
}

/* Global Dragon Sprite */
.page-dragon {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 80px;
    height: 80px;
    background: url('dragon.gif') no-repeat center center;
    background-size: contain;
    z-index: 1000;
    pointer-events: none;
    opacity: 0.8;
}

@keyframes dragonHover {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Hide dragon on very small screens to avoid clutter */
@media screen and (max-width: 480px) {
    .page-dragon {
        width: 60px;
        height: 60px;
        bottom: 15px;
        left: 15px;
    }
}

/* Go Back Button */
.go-back-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.go-back-btn {
    background: #aeccee;
    background: radial-gradient(circle, rgba(174, 204, 238, 1) 0%, rgba(148, 187, 233, 1) 100%);
    color: #000000;
    border: 2px solid rgba(174, 204, 238, 0.8);
    padding: 12px 24px;
    font-family: 'Block Craft', Arial, sans-serif;
    font-size: 16px;
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(174, 204, 238, 0.4);
    display: inline-block;
    font-weight: bold;
}

.go-back-btn:hover {
    background: radial-gradient(circle, rgba(148, 187, 233, 1) 0%, rgba(174, 204, 238, 1) 100%);
    color: #000000;
    border-color: rgba(148, 187, 233, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(174, 204, 238, 0.6);
}

.go-back-btn:active {
    transform: translateY(0px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments for go back button */
@media screen and (max-width: 768px) {
    .go-back-container {
        bottom: 15px;
        right: 15px;
    }
    
    .go-back-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .go-back-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* Contact Page Styles */
#contact-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 40px 40px 40px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    border: 2px solid;
    border-image: linear-gradient(90deg, rgba(220, 232, 242, 1) 3%, rgba(119, 196, 237, 1) 95%) 1;
}

/* Page title outside the form box */
.page-title {
    font-family: 'Block Craft', cursive, serif;
    padding-top: 60px;
    font-size: 48px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
    margin-top: 0;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: normal;
}

.contact-intro {
    font-family: 'Inconsolata', monospace;
    font-size: 1.1rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
    background: rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid;
    border-image: linear-gradient(90deg, rgba(220, 232, 242, 1) 3%, rgba(119, 196, 237, 1) 95%) 1;
}

/* Contact form uses the same styles as apply form */
#contact-content .form-group {
    margin-bottom: 25px;
}

#contact-content label {
    display: block;
    font-family: 'Inconsolata', monospace;
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: bold;
}

#contact-content input[type="text"],
#contact-content input[type="email"],
#contact-content textarea {
    width: 100%;
    padding: 12px 15px;
    font-family: 'Inconsolata', monospace;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid;
    border-image: linear-gradient(90deg, rgba(220, 232, 242, 1) 3%, rgba(119, 196, 237, 1) 95%) 1;
    border-radius: 8px;
    color: #ffffff;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

#contact-content input[type="text"]:focus,
#contact-content input[type="email"]:focus,
#contact-content textarea:focus {
    outline: none;
    border-color: #87CEEB;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

#contact-content textarea {
    resize: vertical;
    min-height: 120px;
}

#contact-content .submit-btn {
    width: 100%;
    padding: 15px;
    font-family: 'Inconsolata', monospace;
    font-size: 1.1rem;
    background: #dce8f2;
    background: linear-gradient(90deg,
     rgba(220, 232, 242, 1) 3%,
    rgba(119, 196, 237, 1) 95%);
    color: #ffffff;
    border: 2px solid;
    border-image: linear-gradient(90deg, rgba(220, 232, 242, 1) 3%, rgba(119, 196, 237, 1) 95%) 1;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#contact-content .submit-btn:hover {
    background: linear-gradient(90deg,
     rgba(119, 196, 237, 1) 3%,
    rgba(220, 232, 242, 1) 95%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(119, 196, 237, 0.4);
}

#contact-content .submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(119, 196, 237, 0.4);
}

#contact-content .form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    font-family: 'Inconsolata', monospace;
    font-size: 0.9rem;
    text-align: center;
}

#contact-content .form-message.success {
    background: rgba(46, 160, 67, 0.2);
    color: #4caf50;
    border: 2px solid #4caf50;
}

#contact-content .form-message.error {
    background: rgba(244, 67, 54, 0.2);
    color: #87CEEB;
    border: 2px solid #87CEEB;
}

#contact-content .required {
    color: #87CEEB;
}

#contact-content input::placeholder,
#contact-content textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

/* Responsive adjustments for contact page */
@media screen and (max-width: 768px) {
    #contact-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    #contact-content h1 {
        font-size: 33px;
    }
    
    .contact-intro {
        font-size: 17px;
        padding: 15px;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 480px) {
    #contact-content {
        padding: 20px 15px;
        margin: 10px;
    }
    
    #contact-content h1 {
        font-size: 30px;
    }
    
    .contact-intro {
        font-size: 16px;
        padding: 12px;
        margin-bottom: 25px;
    }
    
    #contact-content input[type="text"],
    #contact-content input[type="email"],
    #contact-content textarea {
        padding: 10px 12px;
        font-size: 15px;
    }
    
    #contact-content .submit-btn {
        padding: 12px;
        font-size: 17px;
    }
}

/* Responsive adjustments for apply page */
@media (max-width: 768px) {
    #apply-content {
        padding: 30px 15px;
    }
    
    #apply-content h1 {
        font-size: 37px;
    }
    
    #apply-content p {
        font-size: 19px;
    }
    
    #form-container {
        padding: 15px;
        margin: 0 10px;
    }
    
    #form-container iframe {
        height: 600px;
    }
}

@media (max-width: 480px) {
    #apply-content h1 {
        font-size: 29px;
        letter-spacing: 1px;
    }
    
    #apply-content p {
        font-size: 17px;
    }
    
    #form-container {
        border-width: 1px;
        padding: 10px;
    }
    
    #form-container iframe {
        height: 500px;
    }
}

/* Schedule Page Styles */
.schedule-page {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    padding-top: 60px; /* Account for fixed navbar */
    background: #000000 !important;
}

/* Interactive Hoverable Background Lines */
.schedule-bg-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.bg-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(135, 206, 235, 0.3), transparent);
    opacity: 0.2;
    transition: all 0.4s ease;
    pointer-events: auto;
    cursor: pointer;
}

.bg-line:hover {
    opacity: 1;
    background: linear-gradient(90deg, transparent, rgba(135, 206, 235, 0.8), rgba(255, 255, 255, 0.6), rgba(135, 206, 235, 0.8), transparent);
    animation: lineShine 0.8s ease-out;
    box-shadow: 0 0 20px rgba(135, 206, 235, 0.6);
    z-index: 10;
}

/* Position each line differently */
.line-1 { 
    top: 15%; left: 0; width: 100%; height: 2px; 
    transform: rotate(15deg);
}
.line-2 { 
    top: 25%; left: 0; width: 100%; height: 1px; 
    transform: rotate(-10deg);
}
.line-3 { 
    top: 40%; left: 0; width: 100%; height: 2px; 
    transform: rotate(8deg);
}
.line-4 { 
    top: 55%; left: 0; width: 100%; height: 1px; 
    transform: rotate(-5deg);
}
.line-5 { 
    top: 70%; left: 0; width: 100%; height: 2px; 
    transform: rotate(12deg);
}
.line-6 { 
    top: 80%; left: 0; width: 100%; height: 1px; 
    transform: rotate(-8deg);
}
.line-7 { 
    top: 35%; left: 0; width: 100%; height: 1px; 
    transform: rotate(20deg);
}
.line-8 { 
    top: 60%; left: 0; width: 100%; height: 1px; 
    transform: rotate(-15deg);
}

@keyframes lineShine {
    0% { 
        opacity: 0.2; 
        transform: scale(1) rotate(var(--rotation));
    }
    50% { 
        opacity: 1; 
        transform: scale(1.05) rotate(var(--rotation));
        box-shadow: 0 0 30px rgba(135, 206, 235, 0.8);
    }
    100% { 
        opacity: 0.8; 
        transform: scale(1) rotate(var(--rotation));
        box-shadow: 0 0 20px rgba(135, 206, 235, 0.6);
    }
}


@keyframes scheduleLineMove {
    0% {
        background-position: 0 0, 50px 50px, 0 0, 25px 25px;
    }
    100% {
        background-position: 100px 100px, -100px 200px, 80px 80px, -95px 145px;
    }
}

@keyframes scheduleLineFade {
    0%, 100% { opacity: 0.05; }
    20% { opacity: 0.12; }
    40% { opacity: 0.03; }
    60% { opacity: 0.08; }
    80% { opacity: 0.06; }
}

@keyframes scheduleLineShift {
    0% { transform: translateX(0px) translateY(0px); }
    25% { transform: translateX(10px) translateY(-5px); }
    50% { transform: translateX(-5px) translateY(10px); }
    75% { transform: translateX(15px) translateY(5px); }
    100% { transform: translateX(0px) translateY(0px); }
}

/* Schedule background removed - now uses bg.png from body */
/* .schedule-background and .schedule-bg-image styles removed */

.schedule-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 60px);
    padding: 40px 20px;
}

.schedule-title {
    font-family: 'Block Craft', cursive, serif;
    font-size: 42px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 60px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    font-weight: normal;
}

.schedule-content {
    max-width: 600px;
    width: 100%;
    text-align: left;
    background: rgba(0, 0, 0, 0.9);
    padding: 25px;
    border-radius: 15px;
    position: relative;
    z-index: 5;
}

.schedule-item {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    margin-bottom: 32px;
    font-family: 'Inconsolata', monospace;
    line-height: 1.4;
    border: 2px solid #87CEEB;
    border-radius: 8px;
    padding: 15px;
    background: rgba(135, 206, 235, 0.05);
}

.schedule-time {
    font-family: "Orbit", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    color: #e0e0e0;
    margin-right: 15px;
    min-width: 120px;
    flex-shrink: 0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.schedule-desc {
    font-family: "Orbit", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    color: #e0e0e0;
    flex: 1;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.schedule-item.highlight .schedule-desc {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media screen and (max-width: 768px) {
    .schedule-container {
        padding: 30px 15px;
    }
    
    .schedule-title {
        font-size: 33px;
        margin-bottom: 40px;
    }
    
    .schedule-time,
    .schedule-desc {
        font-size: 19px;
    }
    
    .schedule-item {
        margin-bottom: 28px;
    }
    
    .schedule-time {
        min-width: 120px;
        margin-right: 12px;
    }
}

@media screen and (max-width: 480px) {
    .schedule-container {
        padding: 20px 10px;
    }
    
    .schedule-title {
        font-size: 25px;
        margin-bottom: 30px;
    }
    
    .schedule-time,
    .schedule-desc {
        font-size: 15px;
    }
    
    .schedule-item {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 24px;
    }
    
    .schedule-time {
        margin-bottom: 5px;
        margin-right: 0;
        min-width: auto;
    }
}

/* Interactive Stars Background for Sponsors */
.sponsors-stars-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.sponsors-star {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 50%, transparent 100%);
    border-radius: 50%;
    box-shadow: 
        0 0 6px rgba(255, 255, 255, 0.8),
        0 0 12px rgba(255, 255, 255, 0.6),
        0 0 18px rgba(255, 255, 255, 0.4);
    animation: sponsorsStarTwinkle 3s ease-in-out infinite, sponsorsStarFloat 20s ease-in-out infinite;
    transition: all 0.2s ease-out;
    opacity: 0.9;
}

.sponsors-star::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 8px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), transparent);
    border-radius: 50%;
}

.sponsors-star::after {
    content: '';
    position: absolute;
    left: -1px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 1px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.9), transparent);
    border-radius: 50%;
}

.sponsors-star:nth-child(even) {
    animation: sponsorsStarTwinkle 4s ease-in-out infinite, sponsorsStarFloat2 25s ease-in-out infinite;
    animation-delay: -1.5s, -5s;
}

.sponsors-star:nth-child(3n) {
    animation: sponsorsStarTwinkle 3.5s ease-in-out infinite, sponsorsStarFloat3 18s ease-in-out infinite;
    animation-delay: -0.8s, -7s;
}

.sponsors-star:nth-child(5n) {
    animation: sponsorsStarTwinkle 2.8s ease-in-out infinite, sponsorsStarFloat 22s ease-in-out infinite;
    animation-delay: -2.2s, -3s;
}

@keyframes sponsorsStarTwinkle {
    0%, 100% { 
        opacity: 0.9; 
        filter: brightness(1);
    }
    25% { 
        opacity: 0.4; 
        filter: brightness(0.6);
    }
    50% { 
        opacity: 1; 
        filter: brightness(1.4);
    }
    75% { 
        opacity: 0.6; 
        filter: brightness(0.8);
    }
}

@keyframes sponsorsStarFloat {
    0% { 
        transform: translate(0px, 0px) scale(1);
    }
    20% { 
        transform: translate(2px, -3px) scale(1.05);
    }
    40% { 
        transform: translate(-1px, 2px) scale(0.95);
    }
    60% { 
        transform: translate(3px, 1px) scale(1.1);
    }
    80% { 
        transform: translate(-2px, -1px) scale(0.9);
    }
    100% { 
        transform: translate(0px, 0px) scale(1);
    }
}

@keyframes sponsorsStarFloat2 {
    0% { 
        transform: translate(0px, 0px) scale(1);
    }
    25% { 
        transform: translate(-2px, 3px) scale(1.08);
    }
    50% { 
        transform: translate(3px, -1px) scale(0.92);
    }
    75% { 
        transform: translate(-1px, -2px) scale(1.12);
    }
    100% { 
        transform: translate(0px, 0px) scale(1);
    }
}

@keyframes sponsorsStarFloat3 {
    0% { 
        transform: translate(0px, 0px) scale(1);
    }
    30% { 
        transform: translate(1px, -2px) scale(1.03);
    }
    60% { 
        transform: translate(-3px, 1px) scale(0.97);
    }
    90% { 
        transform: translate(2px, 2px) scale(1.07);
    }
    100% { 
        transform: translate(0px, 0px) scale(1);
    }
}

/* Sponsors Page Styles */
.sponsors-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px 200px 20px;
    gap: 30px;
}

.sponsors-announcement {
    background: rgba(0, 0, 0, 0.3);
    border: 3px solid transparent;
    border-image: linear-gradient(90deg, rgba(220, 232, 242, 1) 3%, rgba(119, 196, 237, 1) 95%) 1;
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(119, 196, 237, 0.3);
}

.sponsors-announcement p {
    font-family: "Orbit", sans-serif;
    font-weight: 400;
    font-size: 22px;
    color: #ffffff;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.sponsor-logo {
    flex: 1 1 150px;
    max-width: 200px;
    min-width: 120px;
    margin-bottom: 0;
    background: #ffffff !important;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.sponsor-logo:hover {
    transform: scale(1.1);
}

.sponsor-logo img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.sponsor-image {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.sponsor-image:hover {
    transform: scale(1.05);
}

.sponsors-text {
    color: #ffffff;
    font-family: "Orbit", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.sponsors-text p {
    font-family: "Orbit", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.sponsors-text a:hover {
    color: #ffffff !important;
    text-shadow: 0 0 8px #87CEEB;
}

@media screen and (max-width: 768px) {
    .sponsors-content {
        padding: 30px 15px 200px 15px;
        flex-direction: column;
        align-items: center;
    }
    
    .sponsor-logo {
        flex: none;
        min-width: 150px;
        max-width: 200px;
    }
    
    .sponsor-image {
        max-width: 250px;
    }
    
    .sponsors-text p {
        font-size: 17px;
    }
}

@media screen and (max-width: 480px) {
    .sponsor-image {
        max-width: 200px;
    }
    
    .sponsors-text p {
        font-size: 15px;
    }
}

/* Remove background image from sponsors page */
body.sponsors-page {
    background-image: none !important;
    background-color: #000000;
}

/* Scroll footer behavior - only show when scrolling down on all pages */

/* Header Animation Classes */



/* Animated Background Particles */
.particles-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #7DD3FC;
    border-radius: 50%;
    opacity: 0.4;
}

.particle:nth-child(1) {
    top: 10%;
    left: 20%;
}

.particle:nth-child(2) {
    top: 30%;
    left: 80%;
}

.particle:nth-child(3) {
    top: 70%;
    left: 15%;
}

.particle:nth-child(4) {
    top: 50%;
    left: 60%;
}

.particle:nth-child(5) {
    top: 85%;
    left: 90%;
}

.particle:nth-child(6) {
    top: 25%;
    left: 40%;
}

.particle:nth-child(7) {
    top: 60%;
    left: 25%;
}

.particle:nth-child(8) {
    top: 15%;
    left: 70%;
}

.particle:nth-child(9) {
    top: 90%;
    left: 35%;
}

.particle:nth-child(10) {
    top: 40%;
    left: 85%;
}

@keyframes particleFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
    25% { transform: translate(10px, -20px) scale(1.2); opacity: 0.6; }
    50% { transform: translate(-15px, -10px) scale(0.8); opacity: 0.3; }
    75% { transform: translate(20px, 15px) scale(1.1); opacity: 0.5; }
}

@keyframes particleFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
    33% { transform: translate(-25px, 10px) scale(1.3); opacity: 0.7; }
    66% { transform: translate(30px, -25px) scale(0.9); opacity: 0.2; }
}

@keyframes particleFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
    20% { transform: translate(15px, -30px) scale(1.4); opacity: 0.8; }
    40% { transform: translate(-20px, 25px) scale(0.7); opacity: 0.3; }
    60% { transform: translate(25px, -15px) scale(1.2); opacity: 0.6; }
    80% { transform: translate(-10px, 20px) scale(0.9); opacity: 0.4; }
}

@keyframes particleFloat4 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
    30% { transform: translate(-18px, -22px) scale(1.1); opacity: 0.6; }
    70% { transform: translate(22px, 18px) scale(0.8); opacity: 0.2; }
}

@keyframes particleFloat5 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
    25% { transform: translate(12px, 28px) scale(1.3); opacity: 0.7; }
    50% { transform: translate(-28px, -12px) scale(0.6); opacity: 0.3; }
    75% { transform: translate(16px, -20px) scale(1.1); opacity: 0.5; }
}

@keyframes particleFloat6 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
    40% { transform: translate(-14px, 35px) scale(1.2); opacity: 0.8; }
    80% { transform: translate(30px, -14px) scale(0.7); opacity: 0.2; }
}

@keyframes particleFloat7 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
    20% { transform: translate(25px, -18px) scale(1.4); opacity: 0.6; }
    40% { transform: translate(-30px, 25px) scale(0.8); opacity: 0.4; }
    60% { transform: translate(18px, -35px) scale(1.1); opacity: 0.7; }
    80% { transform: translate(-12px, 20px) scale(0.9); opacity: 0.3; }
}

@keyframes particleFloat8 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
    35% { transform: translate(-20px, -25px) scale(1.3); opacity: 0.6; }
    65% { transform: translate(32px, 20px) scale(0.7); opacity: 0.2; }
}

@keyframes particleFloat9 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
    30% { transform: translate(22px, -32px) scale(1.2); opacity: 0.8; }
    60% { transform: translate(-25px, 28px) scale(0.8); opacity: 0.3; }
}

@keyframes particleFloat10 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
    25% { transform: translate(-16px, 24px) scale(1.1); opacity: 0.5; }
    50% { transform: translate(28px, -20px) scale(0.9); opacity: 0.7; }
    75% { transform: translate(-22px, -16px) scale(1.3); opacity: 0.4; }
}

/* About Page Unique Animations */





@keyframes aboutBorderGlow {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(119, 196, 237, 0.2);
        border-image: linear-gradient(90deg, rgba(220, 232, 242, 1) 3%, rgba(119, 196, 237, 1) 95%) 1;
    }
    50% {
        box-shadow: 0 12px 48px rgba(119, 196, 237, 0.4);
        border-image: linear-gradient(90deg, rgba(119, 196, 237, 1) 3%, rgba(220, 232, 242, 1) 95%) 1;
    }
}

@keyframes aboutShimmer {
    0% {
        transform: translateX(-100%) rotate(45deg);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(300%) rotate(45deg);
        opacity: 0;
    }
}

@keyframes sponsorAnnouncementGlow {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(119, 196, 237, 0.3);
        border-image: linear-gradient(90deg, rgba(220, 232, 242, 1) 3%, rgba(119, 196, 237, 1) 95%) 1;
    }
    50% {
        box-shadow: 0 12px 48px rgba(119, 196, 237, 0.5);
        border-image: linear-gradient(90deg, rgba(119, 196, 237, 1) 3%, rgba(220, 232, 242, 1) 95%) 1;
    }
}

@keyframes footerGradientMove {
    0% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 75%;
    }
    50% {
        background-position: 100% 50%;
    }
    75% {
        background-position: 0% 25%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes footerGradientHover {
    0% {
        background-position: 0% 50%;
    }
    33% {
        background-position: 100% 100%;
    }
    66% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes footerShimmer {
    0% {
        left: -100%;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

/* Sponsors Title - Same as About Title */
.sponsors-title {
    font-family: 'Block Craft', cursive, serif;
    font-size: 48px;
    color: #ffffff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: normal;
    text-align: center;
}

/* Moveable Dragon Styles */
.page-dragon.moveable {
    cursor: grab;
    transition: none;
    user-select: none;
    z-index: 1001;
}

.page-dragon.moveable:active {
    cursor: grabbing;
    transform: scale(1.1);
}

.page-dragon.moveable:hover {
    transform: scale(1.2);
    filter: brightness(1.2) drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
}

/* Scroll Footer Styles */
#scroll-footer {
    position: fixed;
    bottom: -80px;
    left: 0;
    width: 100%;
    height: 70px;
    background: #7ec3e6;
    background: linear-gradient(90deg, rgba(126, 195, 230, 1) 0%, rgba(9, 16, 99, 1) 100%);
    background-size: 400% 400%;
    animation: footerGradientMove 60s ease-in-out infinite;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 2px solid rgba(125, 211, 252, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    z-index: 1000;
    transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, visibility 0.4s ease;
    box-shadow: 0 -4px 20px rgba(119, 196, 237, 0.3);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
}

/* Hide footer completely on homepage */
body.landing-page #scroll-footer {
    display: none !important;
}





#scroll-footer.visible {
    bottom: 0;
    opacity: 1;
    visibility: visible;
}

#scroll-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: footerShimmer 3s ease-in-out infinite;
    z-index: 1;
}

#scroll-footer:hover {
    background: linear-gradient(45deg, rgba(119, 196, 237, 0.9), rgba(135, 206, 235, 0.9), rgba(174, 204, 238, 0.9), rgba(119, 196, 237, 0.9));
    background-size: 400% 400%;
    animation: footerGradientHover 4s ease-in-out infinite;
    box-shadow: 0 -6px 30px rgba(119, 196, 237, 0.4);
    border-top-color: rgba(125, 211, 252, 0.8);
}

.footer-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-label {
    font-family: 'Block Craft', cursive, serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-label:hover {
    color: rgba(255, 255, 255, 1);
    text-shadow: 0 0 15px rgba(255, 255, 255, 1);
}

.footer-links {
    display: flex;
    gap: 12px;
}

.footer-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-family: 'Block Craft', cursive, serif;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.footer-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.4);
    text-shadow: 0 0 20px rgba(255, 255, 255, 1);
}

.footer-link:active {
    transform: translateY(0);
}

.footer-separator {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(125, 211, 252, 0.3), transparent);
}

/* Mobile responsive */
@media screen and (max-width: 768px) {
    #scroll-footer {
        height: 60px;
        gap: 20px;
        padding: 0 15px;
    }
    
    .footer-label {
        font-size: 12px;
    }
    
    .footer-link {
        width: 30px;
        height: 30px;
        font-size: 10px;
    }
    
    .footer-links {
        gap: 8px;
    }
}

@media screen and (max-width: 480px) {
    #scroll-footer {
        flex-direction: column;
        height: 80px;
        gap: 5px;
        padding: 10px;
        justify-content: center;
        align-items: center;
    }
    
    .footer-section {
        margin: 0;
    }
    
    .footer-separator {
        display: none;
    }
}

 