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

:root {
    --primary-gold: #FFD700;
    --primary-red: #DC143C;
    --primary-green: #00FF7F;
    --dark-bg: #0a0e27;
    --darker-bg: #050812;
    --card-bg: #1a1f3a;
    --text-light: #ffffff;
    --text-gray: #b8b8d4;
    --accent-blue: #00d4ff;
    --accent-purple: #9d4edd;
    --accent-orange: #ff6b35;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--darker-bg);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.age-gate-overlay.hidden {
    display: none;
}

.age-gate-modal {
    position: relative;
    background: linear-gradient(135deg, #1a1f3a 0%, #2d1b4e 100%);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    border: 3px solid var(--primary-gold);
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.5);
}

.age-gate-spinner {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    border: 4px solid transparent;
    border-top-color: var(--primary-gold);
    border-right-color: var(--primary-red);
    border-radius: 50%;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    to { transform: translateX(-50%) rotate(360deg); }
}

.age-gate-icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: bounce 1s ease-in-out infinite;
}

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

.age-gate-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    color: var(--primary-gold);
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.age-gate-content p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.age-gate-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-enter, .btn-exit {
    padding: 15px 35px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-family: 'Rajdhani', sans-serif;
    transition: all 0.3s ease;
}

.btn-enter {
    background: linear-gradient(135deg, var(--primary-green), #00cc66);
    color: var(--darker-bg);
    box-shadow: 0 5px 20px rgba(0, 255, 127, 0.4);
}

.btn-enter:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 255, 127, 0.6);
}

.btn-exit {
    background: linear-gradient(135deg, var(--primary-red), #b30000);
    color: var(--text-light);
    box-shadow: 0 5px 20px rgba(220, 20, 60, 0.4);
}

.btn-exit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(220, 20, 60, 0.6);
}

.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(10, 14, 39, 0.98) 0%, rgba(26, 31, 58, 0.95) 100%);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.header-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 215, 0, 0.02) 10px,
        rgba(255, 215, 0, 0.02) 20px
    );
    pointer-events: none;
}

.navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 60px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

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

.logo-icon {
    display: flex;
    gap: 5px;
}

.logo-symbol {
    font-size: 24px;
    animation: symbolPulse 2s ease-in-out infinite;
}

.logo-symbol:nth-child(1) {
    color: var(--primary-red);
    animation-delay: 0s;
}

.logo-symbol:nth-child(2) {
    color: var(--darker-bg);
    text-shadow: 0 0 10px var(--text-light);
    animation-delay: 0.3s;
}

.logo-symbol:nth-child(3) {
    color: var(--primary-red);
    animation-delay: 0.6s;
}

@keyframes symbolPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 1; }
}

.site-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--primary-gold);
    text-decoration: none;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-blue));
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-gold);
    transform: translateY(-2px);
}

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

.link-icon {
    font-size: 18px;
}

.contact-button {
    position: relative;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--primary-red), #8b0000);
    border: 2px solid var(--primary-gold);
    border-radius: 25px;
    color: var(--text-light);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-sparkle {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: sparkle 3s infinite;
}

@keyframes sparkle {
    to { left: 200%; }
}

.contact-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
}

.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at center, #1a1f3a 0%, var(--darker-bg) 70%);
    overflow: hidden;
    padding: 60px 20px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.floating-icon {
    position: absolute;
    font-size: 60px;
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
    animation-delay: var(--delay);
    left: var(--x);
    top: var(--y);
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -20px) rotate(10deg); }
    50% { transform: translate(-10px, -40px) rotate(-5deg); }
    75% { transform: translate(-30px, -20px) rotate(5deg); }
}

.hero-content-wrapper {
    max-width: 1200px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.age-badge-container {
    margin-bottom: 30px;
}

.age-badge {
    position: relative;
    display: inline-block;
    padding: 12px 35px;
    background: rgba(26, 31, 58, 0.9);
    border: 2px solid var(--primary-gold);
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.badge-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.badge-text {
    position: relative;
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
}

.hero-main-content {
    margin-top: 40px;
}

.title-container {
    margin-bottom: 30px;
}

.main-title {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.title-welcome {
    font-family: 'Rajdhani', sans-serif;
    font-size: 32px;
    font-weight: 500;
    color: var(--text-gray);
    letter-spacing: 3px;
}

.title-brand {
    font-family: 'Orbitron', sans-serif;
    font-size: 72px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #ffa500 50%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 5px 30px rgba(255, 215, 0, 0.5);
    letter-spacing: 5px;
}

.title-decoration {
    height: 4px;
    width: 200px;
    margin: 20px auto;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    border-radius: 2px;
}

.hero-description {
    font-size: 20px;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.cta-button {
    position: relative;
    padding: 18px 50px;
    background: linear-gradient(135deg, var(--primary-gold), #ffa500);
    border: none;
    border-radius: 30px;
    color: var(--darker-bg);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.cta-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    to { left: 200%; }
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
}

.games-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 50%, var(--darker-bg) 100%);
}

.section-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}

.section-decoration-left,
.section-decoration-right {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-gold));
}

.section-decoration-right {
    background: linear-gradient(90deg, var(--primary-gold), transparent);
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-gold);
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    letter-spacing: 3px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.game-card {
    position: relative;
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease;
}

.game-card:hover {
    transform: translateY(-10px);
}

.game-card-inner {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: var(--card-bg);
}

.game-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    overflow: hidden;
}

.game-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card:hover .game-image-wrapper img {
    transform: scale(1.1);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.play-icon {
    font-size: 60px;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.play-label {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 2px;
}

.game-border-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 15px;
    background: linear-gradient(45deg, var(--primary-gold), var(--accent-blue), var(--primary-red));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-border-glow {
    opacity: 1;
    animation: rotateBorder 3s linear infinite;
}

@keyframes rotateBorder {
    to { transform: rotate(360deg); }
}

.featured-glow {
    opacity: 0.5;
    background: linear-gradient(45deg, var(--primary-gold), #ff1493, var(--accent-purple));
}

.game-card.featured-game:hover .featured-glow {
    opacity: 1;
}

.game-title {
    text-align: center;
    padding: 15px;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-light);
    margin-top: 10px;
}

.featured-label {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary-gold), #ff1493);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    color: var(--darker-bg);
    z-index: 10;
    animation: featuredPulse 2s ease-in-out infinite;
}

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

.features-section {
    padding: 100px 20px;
    background: var(--dark-bg);
}

.features-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(26, 31, 58, 0.6) 100%);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-gold {
    border-color: var(--primary-gold);
}

.feature-emerald {
    border-color: var(--primary-green);
}

.feature-sapphire {
    border-color: var(--accent-blue);
}

.feature-ruby {
    border-color: var(--primary-red);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.feature-gold:hover {
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.feature-emerald:hover {
    box-shadow: 0 15px 40px rgba(0, 255, 127, 0.3);
}

.feature-sapphire:hover {
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
}

.feature-ruby:hover {
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.3);
}

.feature-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.feature-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 15px;
}

.feature-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    margin: 15px auto;
}

.feature-text {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
}

.about-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.about-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: rgba(26, 31, 58, 0.5);
    padding: 50px;
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.about-card-reverse {
    grid-template-columns: 1fr 1fr;
}

.about-image-container {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid var(--primary-gold);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text-content {
    padding: 20px;
}

.about-heading {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.about-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), transparent);
    margin-bottom: 25px;
}

.about-paragraph {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.8;
}

.disclaimer-section {
    padding: 100px 20px;
    background: var(--card-bg);
}

.disclaimer-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-header-box {
    text-align: center;
    margin-bottom: 50px;
}

.warning-icon-large {
    font-size: 70px;
    margin-bottom: 20px;
}

.disclaimer-heading {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-red);
    text-shadow: 0 0 20px rgba(220, 20, 60, 0.4);
}

.disclaimer-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.disclaimer-box {
    background: rgba(10, 14, 39, 0.6);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-gold);
    transition: all 0.3s ease;
}

.disclaimer-box:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.2);
}

.disclaimer-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.disclaimer-box strong {
    color: var(--primary-gold);
    display: block;
    margin-bottom: 10px;
}

.contact-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

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

.contact-title-area {
    text-align: center;
    margin-bottom: 60px;
}

.contact-main-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 15px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
}

.contact-subtitle-text {
    font-size: 18px;
    color: var(--text-gray);
}

.contact-content-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background: rgba(26, 31, 58, 0.6);
    padding: 25px;
    border-radius: 12px;
    display: flex;
    gap: 20px;
    align-items: center;
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--primary-gold);
    transform: translateX(5px);
}

.info-card-icon {
    font-size: 36px;
}

.info-card-content h4 {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.info-card-content p {
    font-size: 14px;
    color: var(--text-gray);
}

.contact-reasons-box {
    background: rgba(26, 31, 58, 0.6);
    padding: 25px;
    border-radius: 12px;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.contact-reasons-box h4 {
    font-size: 18px;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.reasons-list {
    list-style: none;
}

.reasons-list li {
    font-size: 15px;
    color: var(--text-gray);
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.reasons-list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-size: 12px;
}

.contact-form {
    background: rgba(26, 31, 58, 0.6);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    padding: 15px;
    background: rgba(10, 14, 39, 0.8);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    color: var(--text-light);
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.form-group textarea {
    resize: vertical;
}

.form-submit-btn {
    position: relative;
    padding: 16px 50px;
    background: linear-gradient(135deg, var(--primary-gold), #ffa500);
    border: none;
    border-radius: 25px;
    color: var(--darker-bg);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    overflow: hidden;
    margin-top: 20px;
    width: 100%;
    transition: all 0.3s ease;
}

.submit-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: shine 3s infinite;
}

.form-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

.badges-section {
    padding: 60px 20px;
    background: var(--card-bg);
}

.badges-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.badge-box {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 14, 39, 0.6);
    border-radius: 12px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.badge-box img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.badge-link:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.main-footer {
    position: relative;
    background: linear-gradient(180deg, var(--darker-bg) 0%, #000000 100%);
    padding: 80px 20px 30px;
    overflow: hidden;
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 30px,
        rgba(255, 215, 0, 0.02) 30px,
        rgba(255, 215, 0, 0.02) 60px
    );
    pointer-events: none;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.footer-top-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand-area {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.footer-symbol {
    font-size: 32px;
    color: var(--primary-red);
    animation: symbolRotate 4s ease-in-out infinite;
}

@keyframes symbolRotate {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.footer-brand-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--primary-gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.footer-description {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

.footer-newsletter-area {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.newsletter-title {
    font-size: 20px;
    color: var(--primary-gold);
    font-weight: 700;
}

.newsletter-input-group {
    display: flex;
    gap: 10px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 20px;
    background: rgba(26, 31, 58, 0.6);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 25px;
    color: var(--text-light);
    font-family: 'Rajdhani', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.newsletter-btn {
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--primary-gold), #ffa500);
    border: none;
    border-radius: 25px;
    color: var(--darker-bg);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.footer-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
    margin: 40px 0;
}

.footer-links-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-link {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-gold);
}

.link-separator {
    color: rgba(255, 215, 0, 0.3);
}

.footer-bottom-section {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.copyright-text {
    font-size: 14px;
    color: var(--text-gray);
}

@media (max-width: 1024px) {
    .navigation {
        padding: 20px 30px;
    }

    .nav-links {
        gap: 20px;
    }

    .about-card,
    .about-card-reverse {
        grid-template-columns: 1fr;
    }

    .contact-content-layout {
        grid-template-columns: 1fr;
    }

    .footer-top-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .navigation {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .nav-link {
        font-size: 14px;
    }

    .title-brand {
        font-size: 48px;
    }

    .hero-description {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .about-card {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .title-welcome {
        font-size: 24px;
    }

    .title-brand {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .age-gate-modal {
        padding: 40px 25px;
    }

    .age-gate-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-enter,
    .btn-exit {
        width: 100%;
    }
}

.content {
    padding: 40px 10%;
}

.content-block {}

.content-block h2 {
    color: #d18b08;
}

.content-block p,
ul {
    color: rgba(255, 255, 255, 0.7);
}

.play-ground-area {
    padding: 2rem;
    background: black;
}

.play-game {
    max-width: 940px;
    margin: 0 auto;
}