/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gradient-start: #2c3e50;
    --primary-gradient-end: #1a252f;
    --accent-color: #00d4aa;
    --secondary-highlight: #c0c0c0;
    --text-light: #ffffff;
    --text-muted: #a0a0a0;
    --border-glow: rgba(0, 212, 170, 0.3);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
    padding-top: 40px;
    /* Added to compensate for fixed top-banner */
}

/* Top Banner */
.top-banner {
    background: #00d4aa;
    color: #1a252f;
    text-align: center;
    padding: 0;
    font-weight: 700;
    font-size: 0.9rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    z-index: 1001;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Floating Frame Base Styles */
.floating-frame {
    border: 1px solid var(--accent-color);
    border-radius: 8px;
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    box-shadow:
        0 0 20px var(--border-glow),
        inset 0 0 20px rgba(0, 212, 170, 0.1);
    transition: all 0.3s ease;
}

.floating-frame::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--accent-color), transparent, var(--accent-color));
    border-radius: 8px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.floating-frame:hover::before {
    opacity: 0.6;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 40px;
    /* Start below the top-banner */
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-svg {
    height: 38px;
    width: auto;
    filter: drop-shadow(0 0 6px rgba(0, 212, 170, 0.5));
    transition: filter 0.3s ease, transform 0.3s ease;
}

.logo-svg:hover {
    filter: drop-shadow(0 0 12px rgba(0, 212, 170, 0.9));
    transform: scale(1.05);
}

/* Language switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(0, 212, 170, 0.35);
    border-radius: 24px;
    padding: 4px 10px;
    backdrop-filter: blur(10px);
    transition: border-color 0.3s ease;
}

.lang-switcher:hover {
    border-color: var(--accent-color);
}

.lang-toggle {
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    cursor: pointer;
    padding: 3px 8px;
    border-radius: 16px;
    transition: all 0.25s ease;
    line-height: 1;
}

.lang-toggle:hover {
    color: var(--text-light);
}

.lang-toggle.lang-active {
    background: linear-gradient(45deg, var(--accent-color), #00b894);
    color: #fff;
    box-shadow: 0 0 10px rgba(0, 212, 170, 0.4);
}

.lang-divider {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.75rem;
    user-select: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
}

.nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 20s infinite linear;
}

@keyframes float {
    from {
        transform: translateY(100vh) translateX(0);
    }

    to {
        transform: translateY(-100px) translateX(100px);
    }
}

/* Hero Section Styles */
.hero-frame {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: left;
    padding: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, var(--secondary-highlight), var(--accent-color));
    padding: 0.5rem 1rem;
    border-radius: 25px;
    margin-bottom: 2rem;
    animation: badgeGlow 2s ease-in-out infinite alternate;
}

@keyframes badgeGlow {
    from {
        box-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
    }

    to {
        box-shadow: 0 0 20px rgba(255, 107, 107, 0.8);
    }
}

.badge-text {
    background: white;
    color: var(--secondary-highlight);
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
}

.badge-year {
    color: white;
    font-weight: 600;
    font-size: 0.8rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--text-light), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 2.5rem;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 500;
}

.hero-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--accent-color);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.feature-pill:hover {
    transform: translateY(-2px);
    border-color: var(--secondary-highlight);
    box-shadow: 0 5px 15px rgba(0, 212, 170, 0.3);
}

.feature-icon {
    font-size: 1.2rem;
}

.feature-pill span:last-child {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cta-button.primary {
    background: linear-gradient(45deg, var(--accent-color), #00b894);
    color: var(--text-light);
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 212, 170, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 212, 170, 0.4);
}

.cta-button.secondary:hover {
    background: var(--accent-color);
    color: var(--text-light);
}

.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 212, 170, 0.3);
    animation: heroFloat 6s ease-in-out infinite;
    z-index: 1;
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-10px) scale(1.02);
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: -1;
    background-image: url('images/ABT.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.6;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent-color), transparent);
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--secondary-highlight), transparent);
    bottom: -100px;
    left: -50px;
    animation-delay: 5s;
}

.orb-3 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, #ff6b6b, transparent);
    top: 50%;
    right: -75px;
    animation-delay: 10s;
}

.floating-card {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--accent-color);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.4s ease;
    animation: cardFloat 6s ease-in-out infinite;
}

.card-1 {
    top: 20px;
    right: 20px;
    animation-delay: 0s;
}

.card-2 {
    top: 120px;
    left: 30px;
    animation-delay: 2s;
}

.card-3 {
    bottom: 50px;
    right: 60px;
    animation-delay: 4s;
}

@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.card-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.card-icon {
    font-size: 1.5rem;
}

.card-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
}

.floating-card:hover {
    transform: scale(1.1);
    border-color: var(--secondary-highlight);
    box-shadow: 0 10px 25px rgba(0, 212, 170, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 212, 170, 0.5);
}

/* About Section */
.about {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.3), transparent);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.text-frame {
    padding: 1.5rem;
    border: 1px solid var(--accent-color);
    border-radius: 8px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.6s ease forwards;
}

.text-frame:nth-child(1) {
    animation-delay: 0.1s;
}

.text-frame:nth-child(2) {
    animation-delay: 0.2s;
}

.text-frame:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.about-visual {
    position: relative;
    height: 400px;
}

.geometric-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border: 1px solid var(--accent-color);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
}

.shape-1 {
    width: 150px;
    height: 150px;
    top: 20%;
    left: 10%;
    transform: rotate(45deg);
    animation: rotate 20s infinite linear;
}

.shape-2 {
    width: 100px;
    height: 100px;
    top: 50%;
    right: 20%;
    border-radius: 50%;
    animation: pulse 3s infinite ease-in-out;
}

.shape-3 {
    width: 120px;
    height: 120px;
    bottom: 20%;
    left: 30%;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: rotate 15s infinite linear reverse;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 2rem;
}

.steps-container {
    max-width: 1000px;
    margin: 0 auto;
}

.steps-frame {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3rem 2rem;
    border: 2px solid var(--accent-color);
    border-radius: 16px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    position: relative;
}

.step {
    flex: 1;
    text-align: center;
    z-index: 2;
    padding: 2rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-icon {
    margin-bottom: 1.5rem;
}

.icon-frame {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    box-shadow: 0 0 20px var(--border-glow);
}

.step h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.step p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 280px;
    margin: 0 auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    font-weight: 500;
}

.step-connector {
    flex: 0 0 100px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    position: relative;
}

.step-connector::after {
    content: '';
    position: absolute;
    right: -5px;
    top: -4px;
    width: 10px;
    height: 10px;
    background: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-color);
}

/* Game Section */
.game {
    padding: 6rem 2rem;
}

.game-container {
    max-width: 1200px;
    margin: 0 auto;
}

.game-frame {
    padding: 3rem;
    border: 2px solid var(--accent-color);
    border-radius: 16px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
}

/* Game Section Styles */
.game-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: 1rem;
}

.game-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.game-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--accent-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(50px);
}

.game-card:nth-child(1) {
    animation-delay: 0.1s;
}

.game-card:nth-child(2) {
    animation-delay: 0.2s;
}

.game-card:nth-child(3) {
    animation-delay: 0.3s;
}

.game-card:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.game-card.featured {
    border: 2px solid var(--secondary-highlight);
    box-shadow: 0 0 30px rgba(255, 107, 107, 0.3);
}

.card-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 12px;
}

.game-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(0, 212, 170, 0.9) 0%,
            rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.game-card:hover .game-thumbnail {
    transform: scale(1.1);
}

.overlay-content {
    text-align: center;
    color: white;
    padding: 2rem;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.game-card:hover .overlay-content {
    transform: translateY(0);
}

.game-badge {
    display: inline-block;
    background: var(--secondary-highlight);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.overlay-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.overlay-content p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.play-button {
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-gradient-start);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.play-button:hover {
    background: white;
    color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 212, 170, 0.4);
    border-color: var(--accent-color);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 212, 170, 0.3);
    border-color: var(--secondary-highlight);
}

/* Why Us Section */
.why-us {
    padding: 6rem 2rem;
}

.why-us-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.why-us-header {
    text-align: center;
    margin-bottom: 3rem;
}

.why-us-header .section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.why-us-header .section-subtitle {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 500;
}

.feature-panel {
    display: flex;
    align-items: center;
    padding: 2rem;
    border: 1px solid var(--accent-color);
    border-radius: 12px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    gap: 2rem;
}

.feature-panel.left {
    margin-right: auto;
    max-width: 80%;
}

.feature-panel.right {
    margin-left: auto;
    max-width: 80%;
    flex-direction: row-reverse;
}

.feature-number {
    font-size: 3rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 2px var(--accent-color);
    text-stroke: 2px var(--accent-color);
    min-width: 80px;
    text-align: center;
}

.feature-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.feature-content p {
    color: var(--text-muted);
}

/* Contact Section */
.contact {
    padding: 6rem 2rem;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-frame {
    padding: 3rem;
    border: 2px solid var(--accent-color);
    border-radius: 16px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--accent-color);
    color: var(--text-light);
    padding: 1rem 0;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 0;
    color: var(--text-muted);
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: var(--secondary-highlight);
}

.form-group input:focus+label,
.form-group input:valid+label,
.form-group textarea:focus+label,
.form-group textarea:valid+label {
    top: -0.5rem;
    font-size: 0.8rem;
    color: var(--accent-color);
}

.submit-button {
    background: linear-gradient(45deg, var(--accent-color), #00b894);
    color: var(--text-light);
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
    margin-top: 1rem;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 212, 170, 0.5);
}

/* Game Pages Styles */
.game-container {
    padding: 120px 20px 40px;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 100vh;
}

.game-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    border: 2px solid var(--accent-color);
    border-radius: 16px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
}

.game-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px var(--border-glow);
}

.game-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.game-iframe {
    width: 100%;
    height: 80vh;
    min-height: 600px;
    border: 1px solid var(--accent-color);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: #000;
}

.back-button {
    display: inline-block;
    margin-bottom: 2rem;
    padding: 12px 24px;
    background: var(--accent-color);
    color: var(--primary-gradient-start);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
}

.back-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 212, 170, 0.5);
}

@media (max-width: 768px) {
    .game-container {
        padding: 100px 15px 30px;
    }

    .game-title {
        font-size: 2rem;
    }

    .game-iframe {
        height: 60vh;
        min-height: 400px;
    }
}

/* 18+ Disclaimer Section */
.disclaimer {
    padding: 4rem 2rem;
    background: rgba(0, 0, 0, 0.2);
}

.disclaimer-container {
    max-width: 800px;
    margin: 0 auto;
}

.disclaimer-frame {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--accent-color);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 0 20px var(--border-glow);
}

.disclaimer-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.disclaimer-title {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.disclaimer-text {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.disclaimer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.disclaimer-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 1px solid var(--accent-color);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.disclaimer-link:hover {
    background: var(--accent-color);
    color: var(--primary-gradient-start);
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--primary-gradient-start), var(--primary-gradient-end));
    border-top: 1px solid var(--accent-color);
    padding: 4rem 2rem 2rem;
    margin-top: 6rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo .logo-text {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
    text-shadow: 0 0 10px var(--border-glow);
}

.footer-logo-svg {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 6px rgba(0, 212, 170, 0.4));
    opacity: 0.9;
}

.footer-description {
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s ease;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    color: var(--accent-color);
    border-color: var(--secondary-highlight);
    box-shadow: 0 0 15px var(--border-glow);
    transform: translateY(-2px);
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-disclaimer {
    font-style: italic;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        gap: 0.6rem;
        font-size: 0.8rem;
    }

    .lang-switcher {
        padding: 3px 7px;
    }

    .lang-toggle {
        font-size: 0.7rem;
        padding: 2px 6px;
    }

    .logo-svg {
        height: 30px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .steps-frame {
        flex-direction: column;
        gap: 2rem;
    }

    .step-connector {
        width: 2px;
        height: 50px;
        flex: none;
    }

    .game-grid {
        grid-template-columns: 1fr;
    }

    .feature-panel.left,
    .feature-panel.right {
        max-width: 100%;
        margin: 0;
    }

    .feature-panel.right {
        flex-direction: row;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}