/* anka_style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    color: white;
    overflow-x: hidden;
    background: #000;
}

/* Mobile Menu */
.transparent-menu {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.transparent-menu .logo {
    font-family: 'Rumble Brave', sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    text-shadow: 0 0 8px rgba(255, 204, 0, 0.5);
    letter-spacing: 1px;
}

.menu-toggle {
    display: block;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.transparent-menu ul {
    display: none;
    list-style: none;
    font-family: 'Rumble Brave', sans-serif;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    padding: 10px 0;
}

.transparent-menu ul.show {
    display: block;
}

.transparent-menu li {
    margin: 0;
    text-align: center;
}

.transparent-menu a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    display: block;
    padding: 10px 15px;
    transition: all 0.3s;
}

.transparent-menu a:hover {
    color: #ffcc00;
    background: rgba(255, 204, 0, 0.1);
}

/* Main Content */
.main-content {
    position: relative;
    margin-top: 60px;
}

/* Gate Section - Mobile Optimized */
.gate-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.gate-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.gate {
    position: absolute;
    height: 100vh;
    width: auto;
    max-width: none;
    top: 0;
    transition: all 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    z-index: 5;
}

.left-gate {
    left: -50%;
    transform: translateX(-100%);
}

.right-gate {
    right: -50%;
    transform: translateX(100%);
}

.gate-center-gap {
    position: absolute;
    left: 50%;
    top: 0;
    width: 80px;
    height: 100vh;
    transform: translateX(-50%);
    z-index: 4;
}

.game-title {
    font-family: 'Rumble Brave', sans-serif;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.8rem;
    color: #fff;
    text-shadow: 0 0 8px rgba(255, 204, 0, 0.8);
    opacity: 0;
    transition: all 0.8s ease-out 0.5s;
    z-index: 10;
    text-align: center;
    pointer-events: none;
    letter-spacing: 2px;
    width: 90%;
    line-height: 1.3;
}

/* Active States for Mobile */
.gate-section.gates-active .left-gate {
    transform: translateX(0);
    left: calc(50% - 120px);
}

.gate-section.gates-active .right-gate {
    transform: translateX(0);
    right: calc(50% - 120px);
}

.gate-section.gates-active .game-title {
    opacity: 1;
}

/* Reset State */
.gate-section.gates-reset .left-gate {
    transform: translateX(-100%);
    left: -50%;
    transition: all 1.2s ease-in;
}

.gate-section.gates-reset .right-gate {
    transform: translateX(100%);
    right: -50%;
    transition: all 1.2s ease-in;
}

.gate-section.gates-reset .game-title {
    opacity: 0;
    transition: all 0.4s ease-in;
}

/* Content Section */
.content-section {
    min-height: 50vh;
    margin: 10px;
    padding: 25px 15px;
    background: linear-gradient(to bottom, #1a1a2e, #16213e);
}

.content-wrapper {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    padding: 20px;
    transform: scale(0.96);
    transition: transform 0.4s ease-out;
}

.content-section h2 {
    font-family: 'Rumble Brave', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: #ffcc00;
    letter-spacing: 1px;
}

.content-section p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 12px;
}

/* Final Section */
.final-section {
    height: 70vh;
    background: #000;
    position: relative;
}

.rock {
    position: absolute;
    width: 280px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -140px;
    transition: bottom 1s ease-out;
    z-index: 10;
}

.avatar {
    position: absolute;
    height: 180px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -90px;
    opacity: 0;
    transition: all 0.8s ease-out;
    z-index: 20;
    filter: drop-shadow(0 0 8px rgba(100, 200, 255, 0.7));
}

/* Active States */
.content-section.active .content-wrapper {
    transform: scale(1);
}

.final-section.active .rock {
    bottom: 0;
}

.final-section.active .avatar {
    bottom: 40px;
    opacity: 1;
    transition-delay: 0.6s;
}

/* Coming Soon Text */
.coming-soon {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
}

.coming-soon h2 {
    font-family: 'Rumble Brave', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.coming-soon p {
    font-size: 1rem;
}

/* Desktop Styles - Will override mobile styles when screen is wide enough */
@media (min-width: 768px) {
    .transparent-menu {
        padding: 20px 50px;
        flex-direction: row;
    }
    
    .menu-toggle {
        display: none;
    }
    
    .transparent-menu ul {
        display: flex;
        position: static;
        width: auto;
        background: transparent;
        padding: 0;
    }

    .transparent-menu li {
        margin: 0 10px;
    }
    
    .transparent-menu .logo {
        font-size: 2rem;
    }
    
    .transparent-menu a {
        font-size: 1.1rem;
        padding: 5px 10px;
    }
    
    .game-title {
        font-size: 2.5rem;
        width: auto;
    }
    
    .gate-center-gap {
        width: 150px;
    }
    
    .gate-section.gates-active .left-gate {
        left: calc(50% - 300px);
    }
    
    .gate-section.gates-active .right-gate {
        right: calc(50% - 300px);
    }
    
    .content-section {
        padding: 40px 60px;
    }
    
    .content-wrapper {
        padding: 30px;
    }
    
    .content-section h2 {
        font-size: 2rem;
    }
    
    .content-section p {
        font-size: 1.1rem;
    }
    
    .rock {
        width: 400px;
        bottom: -200px;
    }
    
    .avatar {
        height: 280px;
        bottom: -140px;
    }
    
    .final-section.active .avatar {
        bottom: 80px;
    }
    
    .coming-soon h2 {
        font-size: 2.2rem;
    }
    
    .coming-soon p {
        font-size: 1.2rem;
    }
}

/* Larger Desktop Screens */
@media (min-width: 1024px) {
    .transparent-menu .logo {
        font-size: 2.5rem;
    }
    
    .transparent-menu li {
        margin: 0 15px;
    }
    
    .transparent-menu a {
        font-size: 1.3rem;
    }
    
    .game-title {
        font-size: 3.5rem;
    }
    
    .gate-center-gap {
        width: 200px;
    }
    
    .gate-section.gates-active .left-gate {
        left: calc(20% - 450px);
    }
    
    .gate-section.gates-active .right-gate {
        right: calc(20% - 400px);
    }
    
    .content-section {
        padding: 60px 100px;
    }
    
    .rock {
        width: 500px;
    }
    
    .avatar {
        height: 350px;
    }
    
    .final-section.active .avatar {
        bottom: 100px;
    }
}