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

:root {
    --primary-gold: #FFD700;
    --primary-red: #DC143C;
    --primary-green: #228B22;
    --dark-bg: #0A0E1A;
    --darker-bg: #050810;
    --card-bg: #1A1F35;
    --text-primary: #FFFFFF;
    --text-secondary: #B8C5D6;
    --accent-blue: #00D4FF;
    --accent-orange: #FF8C00;
    --border-glow: rgba(255, 215, 0, 0.3);
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Age Gate */
.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-modal {
    background: linear-gradient(135deg, #1A1F35 0%, #0A0E1A 100%);
    padding: 60px 50px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    border: 3px solid var(--primary-gold);
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.4);
    position: relative;
    animation: modalAppear 0.5s ease-out;
}

@keyframes modalAppear {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.age-gate-slots {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.slot-symbol {
    font-size: 60px;
    animation: slotSpin 1s infinite;
}

.slot-symbol:nth-child(2) {
    animation-delay: 0.2s;
}

.slot-symbol:nth-child(3) {
    animation-delay: 0.4s;
}

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

.age-gate-modal h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-gold);
}

.age-gate-modal p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 16px;
}

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

.age-gate-buttons button {
    padding: 15px 40px;
    border: none;
    border-radius: 10px;
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-yes {
    background: linear-gradient(135deg, var(--primary-green), #32CD32);
    color: white;
    box-shadow: 0 5px 20px rgba(34, 139, 34, 0.4);
}

.btn-yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(34, 139, 34, 0.6);
}

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

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

/* Navigation */
.navbar {
    background: linear-gradient(180deg, rgba(10, 14, 26, 0.95) 0%, rgba(26, 31, 53, 0.95) 100%);
    backdrop-filter: blur(15px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary-gold);
    box-shadow: 0 5px 30px rgba(255, 215, 0, 0.2);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    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.5);
}

.logo-icon {
    font-size: 35px;
    animation: gemRotate 3s infinite;
}

@keyframes gemRotate {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(15deg) scale(1.1); }
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 30px;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

.nav-item {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-item:hover {
    color: var(--primary-gold);
}

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

.nav-cta {
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-orange));
    color: var(--dark-bg);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at center, #1A1F35 0%, var(--dark-bg) 70%);
}

.hero-bg-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    animation: bgPulse 4s ease-in-out infinite;
}

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

.hero-container {
    text-align: center;
    max-width: 900px;
    padding: 40px 20px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid var(--primary-gold);
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 40px;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.hero-badge span {
    font-size: 20px;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.title-line-1 {
    font-size: 36px;
    color: var(--text-secondary);
    font-weight: 600;
    animation: fadeInDown 0.8s ease-out;
}

.title-line-2 {
    font-size: 72px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 50px rgba(255, 215, 0, 0.5);
    animation: fadeInUp 0.8s ease-out;
}

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

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

.hero-text {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btn {
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-orange));
    color: var(--dark-bg);
    border: none;
    padding: 18px 50px;
    border-radius: 30px;
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.6);
}

.btn-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.hero-decorations {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.deco-coin, .deco-gem, .deco-star {
    position: absolute;
    font-size: 40px;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.deco-coin {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.deco-coin::before {
    content: '🪙';
}

.deco-gem {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.deco-gem::before {
    content: '💎';
}

.deco-star {
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
}

.deco-star::before {
    content: '⭐';
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(10deg);
    }
}

/* Features Section */
.features {
    padding: 120px 0;
    background: var(--darker-bg);
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: linear-gradient(135deg, var(--card-bg), rgba(26, 31, 53, 0.5));
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
}

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

.feature-card-large {
    grid-column: span 1;
}

.feature-card-wide {
    grid-column: span 3;
}

.card-icon {
    font-size: 50px;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-gold);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 15px;
}

/* Games Section */
.games {
    padding: 120px 0;
    background: radial-gradient(ellipse at center, #1A1F35 0%, var(--dark-bg) 70%);
}

.games-header {
    text-align: center;
    margin-bottom: 80px;
}

.games-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 50px rgba(255, 215, 0, 0.5);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.game-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid transparent;
    transition: all 0.4s ease;
    text-decoration: none;
    position: relative;
}

.game-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.4);
}

.game-card-featured {
    border-color: var(--primary-gold);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
}

.featured-label {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-orange));
    color: var(--dark-bg);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.game-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.game-card:hover .game-image 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;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.play-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--dark-bg);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

.game-overlay span {
    color: white;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 18px;
}

.game-info {
    padding: 25px;
}

.game-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.game-tags {
    display: flex;
    gap: 10px;
}

.tag {
    background: rgba(34, 139, 34, 0.2);
    color: var(--primary-green);
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid var(--primary-green);
}

/* About Section */
.about {
    padding: 120px 0;
    background: var(--darker-bg);
}

.about-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.about-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-item-reverse {
    direction: rtl;
}

.about-item-reverse > * {
    direction: ltr;
}

.about-content {
    padding: 40px;
}

.about-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.about-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary-gold);
}

.about-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.9;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--primary-gold);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* Disclaimer Section */
.disclaimer {
    padding: 120px 0;
    background: radial-gradient(ellipse at center, #1A1F35 0%, var(--dark-bg) 70%);
}

.disclaimer-box {
    background: var(--card-bg);
    border-radius: 30px;
    padding: 60px;
    border: 3px solid var(--primary-red);
    box-shadow: 0 20px 60px rgba(220, 20, 60, 0.3);
}

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

.warning-icon {
    font-size: 80px;
    margin-bottom: 20px;
    display: block;
    animation: pulse 2s ease-in-out infinite;
}

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

.disclaimer-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-red);
}

.disclaimer-header p {
    color: var(--text-secondary);
    font-size: 18px;
}

.disclaimer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.disclaimer-item {
    background: rgba(10, 14, 26, 0.5);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid rgba(220, 20, 60, 0.3);
}

.disc-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.disclaimer-item h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-gold);
}

.disclaimer-item p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: var(--darker-bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    background: var(--card-bg);
    border-radius: 30px;
    overflow: hidden;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.contact-info {
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), transparent);
}

.contact-info h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-gold);
}

.contact-info > p {
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    font-size: 40px;
}

.info-item h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary-gold);
}

.info-item p {
    color: var(--text-secondary);
    font-size: 14px;
}

.contact-reasons {
    background: rgba(10, 14, 26, 0.5);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.contact-reasons h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-gold);
}

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

.contact-reasons li {
    color: var(--text-secondary);
    font-size: 14px;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.contact-reasons li::before {
    content: '⭐';
    position: absolute;
    left: 0;
}

.contact-form {
    padding: 60px 40px;
}

.contact-form h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--primary-gold);
}

.contact-form > p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

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

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(10, 14, 26, 0.5);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-orange));
    color: var(--dark-bg);
    border: none;
    padding: 18px;
    border-radius: 10px;
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
}

.submit-btn .arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.submit-btn:hover .arrow {
    transform: translateX(5px);
}

/* Badges Section */
.badges {
    padding: 80px 0;
    background: var(--dark-bg);
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: center;
}

.badge-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-item img {
    max-width: 150px;
    height: auto;
    transition: transform 0.3s ease;
}

.badge-item:hover img {
    transform: scale(1.1);
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--darker-bg) 0%, #000 100%);
    border-top: 3px solid var(--primary-gold);
    position: relative;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px 30px;
}

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

.footer-brand h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: var(--primary-gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-icon {
    font-size: 40px;
}

.footer-brand p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 14px;
}

.footer-newsletter h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-gold);
}

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

.newsletter-form input {
    flex: 1;
    padding: 15px;
    background: rgba(26, 31, 53, 0.5);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

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

.newsletter-form button {
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-orange));
    color: var(--dark-bg);
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-col a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
}

.footer-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    margin-bottom: 30px;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-card-large,
    .feature-card-wide {
        grid-column: span 2;
    }
}

@media (max-width: 968px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: rgba(10, 14, 26, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 40px 20px;
        align-items: flex-start;
        transition: right 0.3s ease;
        border-left: 2px solid var(--primary-gold);
    }

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

    .title-line-2 {
        font-size: 48px;
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .about-item-reverse {
        direction: ltr;
    }

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

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

    .footer-top {
        grid-template-columns: 1fr;
    }

    .badges-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .title-line-1 {
        font-size: 24px;
    }

    .title-line-2 {
        font-size: 36px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .games-header h2 {
        font-size: 36px;
    }

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

    .feature-card-large,
    .feature-card-wide {
        grid-column: span 1;
    }

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

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

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

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

    .age-gate-buttons button {
        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: rgba(0, 0, 0, 0);
}

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

a{
    text-decoration: none;
    color: white;
}
