/* ========== BASE STYLES ========== */
:root {
    /* Color Palette */
    --primary-color: #6c5ce7;
    --primary-light: #857beb;
    --secondary-color: #fd79a8;
    --accent-color: #00cec9;
    --dark-color: #0f0e17;
    --darker-color: #0a0a10;
    --light-color: #fffffe;
    --gray-color: #a7a9be;
    --success-color: #00b894;
    --warning-color: #fdcb6e;
    --danger-color: #d63031;
    
    /* Effects */
    --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.3);
    --glow-primary: 0 0 15px rgba(108, 92, 231, 0.5);
    --glow-secondary: 0 0 15px rgba(253, 121, 168, 0.5);
}

@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 300;
    src: local("Poppins"),
        url("../fonts/Poppins/Poppins-Light.woff") format("woff");
}
@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 400;
    src: local("Poppins"),
        url("../fonts/Poppins/Poppins-Regular.woff") format("woff");
}
@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 500;
    src: local("Poppins"),
        url("../fonts/Poppins/Poppins-Medium.woff") format("woff");
}
@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 600;
    src: local("Poppins"),
        url("../fonts/Poppins/Poppins-SemiBold.woff") format("woff");
}
@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 700;
    src: local("Poppins"),
        url("../fonts/Poppins/Poppins-Bold.woff") format("woff");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--light-color);
    background-color: var(--darker-color);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(108, 92, 231, 0.15) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(253, 121, 168, 0.15) 0%, transparent 20%);
    background-attachment: fixed;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* ========== HEADER STYLES ========== */
.header {
    background-color: rgba(15, 14, 23, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.header-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    opacity: 0.1;
    z-index: -1;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.5rem;
    transition: transform 0.3s;
    gap: 10px;
}

.animated-tower-logo {
  width: 30px;
  height: 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-layer {
  width: 100%;
  height: 8px;
  background: linear-gradient(to right, #6c5ce7, #00d2ff);
  border-radius: 2px;
  margin-bottom: 2px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  animation: pulse2 2s infinite;
}

.logo-layer:nth-child(1) { width: 18px; animation-delay: 0s; }
.logo-layer:nth-child(2) { width: 24px; animation-delay: 0.2s; }
.logo-layer:nth-child(3) { width: 30px; animation-delay: 0.4s; }

@keyframes pulse2 {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 1.8rem;
    transition: transform 0.3s;
}

.logo:hover .logo-icon {
    transform: rotate(-15deg);
}

.logo-text {
    color: var(--light-color);
    text-transform: uppercase;
}

.logo-text span {
    color: var(--primary-color);
    font-weight: 800;
}

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

.nav-menu li {
    margin-left: 1.5rem;
    position: relative;
}

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

.nav-link span {
    position: relative;
    z-index: 1;
}

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

.nav-link:hover {
    color: var(--light-color);
}

.nav-link:hover::before {
    width: 100%;
}

.nav-cta {
    margin-left: 2rem;
}

.btn-play {
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: var(--glow-primary);
    transition: all 0.3s;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-play::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0) 45%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 55%
    );
    transform: rotate(30deg);
    transition: all 0.3s;
}

.btn-play:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(108, 92, 231, 0.4);
}

.btn-play:hover::after {
    left: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--light-color);
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    padding: 12rem 0 8rem;
    overflow: hidden;
    background: linear-gradient(135deg, var(--darker-color) 0%, var(--dark-color) 100%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.hero-title-line {
    display: block;
    font-size: 3.5rem;
    line-height: 1.2;
    background: linear-gradient(to right, var(--light-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 10px rgba(0, 206, 201, 0.2);
}

.hero-title-line:first-child {
    animation: fadeInUp 0.8s ease-out;
}

.hero-title-line:last-child {
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.subtitle {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 1.5rem auto 3rem;
    color: var(--gray-color);
    animation: fadeIn 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.hero-cta {
    max-width: 600px;
    margin: 0 auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
    margin-bottom: 10px;
}

.scroll-indicator i {
    color: var(--primary-color);
    animation: bounce 2s infinite;
}

/* ========== GAME DEMO ENHANCED STYLES ========== */
.game-demo {
    padding: 4rem 0;
    text-align: center;
    background: rgba(15, 14, 23, 0.5);
    border-radius: 15px;
    margin: 2rem auto;
    max-width: 1200px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.game-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    background: rgba(15, 14, 23, 0.7);
    padding: 1rem;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.stat {
    flex: 1;
    padding: 0.5rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--gray-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.3rem;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-color);
}

#game-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 400px;
    margin: 2rem auto;
    position: relative;
}

.tower {
    width: 150px;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    transition: transform 0.3s ease;
    margin: 0 3rem;
    position: relative;
}

.base-block {
    width: 120px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

.block {
    height: 20px;
    margin: 1px 0;
    border-radius: 2px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    transition: left 0.1s linear;
}

.player-block {
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-light));
}

.opponent-block {
    background: linear-gradient(to bottom, var(--secondary-color), var(--danger-color));
}

.vs-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--danger-color));
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.8rem;
    box-shadow: var(--glow-secondary);
    animation: pulse 2s infinite;
    z-index: 1;
}

.game-controls {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.next-block-preview {
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(15, 14, 23, 0.7);
    border-radius: 10px;
    display: inline-block;
}

.next-block-preview h3 {
    font-size: 1rem;
    color: var(--gray-color);
    margin-bottom: 0.5rem;
}

.preview-block {
    width: 100px;
    height: 20px;
    margin: 0 auto;
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-light));
    border-radius: 2px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
.preview-block {
    transition: all 0.3s ease;
    transform-origin: center;
    animation: pulse-preview 2s infinite;
}

@keyframes pulse-preview {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Tower animations */
@keyframes tower-shake {
    0%, 100% { transform: translateX(0); }
    10%, 60% { transform: translateX(-30px); }
    35%, 90% { transform: translateX(30px); }
}

.tower-shake {
    animation: tower-shake 0.5s ease;
}

@keyframes block-drop {
    0% { transform: translateY(-100px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.block-drop {
    animation: block-drop 0.3s ease-out;
}

/* Game over effects */
.game-over {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 14, 23, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.game-over.active {
    opacity: 1;
    pointer-events: all;
}

.game-over-content {
    background: var(--dark-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    max-width: 500px;
    border: 1px solid var(--primary-color);
    box-shadow: var(--glow-primary);
}

.game-over h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.game-over p {
    color: var(--light-color);
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.game-over-btn {
    padding: 0.8rem 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.game-over-btn:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
}

/* ========== FEATURES SECTION ========== */
.features {
    padding: 4rem 0;
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--light-color);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.features h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 3px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(15, 14, 23, 0.7);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color), var(--secondary-color), var(--primary-color));
    background-size: 400%;
    z-index: -1;
    border-radius: 16px;
    opacity: 0;
    transition: 0.5s;
}

.feature-card:hover::before {
    opacity: 1;
    animation: glow 3s linear infinite;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--light-color);
}

.feature-card p {
    color: var(--gray-color);
    font-size: 0.95rem;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
    100% { transform: translate(-50%, -50%) scale(1); }
}

@keyframes glow {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-3px); }
    75% { transform: translateX(3px); }
}

.tower-shake {
    animation: shake 0.3s ease;
}

/* ========== FORM STYLES ========== */
.game-access-form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
    gap: 0.5rem;
}
.game-access-form>div:first-child {
    display: flex;
    gap: 0.5rem;
}

.game-access-form input:not([type="checkbox"]) {
    flex: 1;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 30px;
    font-size: 1rem;
    transition: all 0.3s;
}

.game-access-form input:not([type="checkbox"])::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.game-access-form input:not([type="checkbox"]):focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.2);
}

.game-access-form button {
    border-radius: 30px;
    padding: 0 2rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* ========== BUTTON STYLES ========== */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--glow-primary);
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    position: relative !important;
    overflow: hidden !important;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0) 45%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 55%
    );
    transform: rotate(30deg);
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.4);
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-primary i {
    margin-left: 10px;
    transition: transform 0.3s;
}

.btn-primary:hover i {
    transform: translateX(5px);
}

/* ========== FOOTER STYLES ========== */
.footer {
    position: relative;
    background: var(--dark-color);
    border-top: 1px solid transparent;
    background-clip: padding-box;
    padding: 3rem 0 0;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    padding: 1rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--light-color);
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-section p, 
.footer-section a, 
.footer-section li {
    color: var(--gray-color);
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.footer-section i {
    margin-right: 0.5rem;
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray-color);
}

.social-links {
    margin-top: 1rem;
}

.social-links a {
    color: var(--gray-color);
    margin: 0 0.5rem;
    font-size: 1.2rem;
    transition: all 0.3s;
    display: inline-block;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}


.form-checkbox {
    margin: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-checkbox input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

.form-checkbox label {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin: 0;
}

.form-checkbox a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s;
}

.form-checkbox a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.game-access-form .form-checkbox {
    margin: 1rem 0 1.5rem;
    padding: 0.5rem 0;
}

.game-access-form .form-checkbox label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}


/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 992px) {
    .hero-title-line {
        font-size: 2.8rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

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

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        gap: 0;
        flex-direction: column;
        background-color: var(--dark-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 1rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1.5rem 0;
    }

    .nav-cta {
        display: block;
        width: fit-content;
    }

    .hero {
        padding: 8rem 0 4rem;
    }

    .hero-title-line {
        font-size: 2.2rem;
    }

    #game-container {
        height: auto;
        padding: 1.5rem;
    }

    .tower {
        margin: 1rem 0;
    }

    .vs-circle {
        display: none;
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 1rem 0;
    }

    .game-controls {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.3rem;
    }
    
    .hero-title-line {
        font-size: 1.8rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 2rem;
    }

    .game-access-form {
        flex-direction: column;
    }

    .game-access-form input {
        border-radius: 30px;
        margin-bottom: 0.5rem;
    }

    .game-access-form button {
        border-radius: 30px;
        width: 100%;
    }


    .game-stats {
        display: flex;
        justify-content: space-around;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
        background: rgba(15, 14, 23, 0.7);
        padding: 0.8rem 0.5rem;
        border-radius: 8px;
        max-width: 100%;
        margin: 0 auto 1.5rem;
    }

    .stat {
        flex: 1;
        padding: 0.3rem;
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.05);
        min-width: 0;
    }

    .stat-label {
        font-size: 0.7rem;
        margin-bottom: 0.2rem;
    }

    .stat-value {
        font-size: 1.2rem;
    }

    .game-access-form>div:first-child {
        flex-direction: column;
    }
    .game-access-form button {
        height: 50px;
    }

}