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

:root {
    --primary-gold: #FFD700;
    --primary-red: #DC143C;
    --primary-green: #00FF7F;
    --dark-bg: #0a0a0a;
    --card-bg: #1a1a1a;
    --border-gold: #FFD700;
    --text-light: #ffffff;
    --text-gray: #cccccc;
    --neon-glow: 0 0 10px rgba(255, 215, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.3);
}

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

.slot-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0e0e 50%, #0a0a0a 100%);
}

.slot-reel {
    position: absolute;
    width: 200px;
    height: 100%;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(220, 20, 60, 0.1) 25%,
        rgba(255, 215, 0, 0.1) 50%,
        rgba(0, 255, 127, 0.1) 75%,
        transparent 100%);
    animation: reelSpin 20s linear infinite;
    opacity: 0.3;
}

.reel-1 {
    left: 10%;
    animation-delay: 0s;
}

.reel-2 {
    left: 45%;
    animation-delay: 7s;
}

.reel-3 {
    left: 80%;
    animation-delay: 14s;
}

@keyframes reelSpin {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}

.neon-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 215, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 215, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

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

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

.age-gate-modal {
    position: relative;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 60px 80px;
    border-radius: 20px;
    border: 3px solid var(--primary-gold);
    box-shadow: var(--neon-glow), 0 20px 60px rgba(0, 0, 0, 0.8);
    text-align: center;
    max-width: 500px;
    animation: modalFloat 3s ease-in-out infinite;
}

.age-gate-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, var(--primary-gold), var(--primary-red), var(--primary-green), var(--primary-gold));
    border-radius: 20px;
    z-index: -1;
    filter: blur(20px);
    opacity: 0.5;
    animation: glowRotate 3s linear infinite;
}

@keyframes glowRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

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

.age-gate-icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: spin 4s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.age-gate-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    color: var(--primary-gold);
    margin-bottom: 15px;
    text-shadow: 0 0 10px 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-yes, .btn-no {
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
}

.btn-yes {
    background: linear-gradient(135deg, var(--primary-gold), #FFA500);
    color: #000;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

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

.btn-no {
    background: linear-gradient(135deg, #555, #333);
    color: var(--text-light);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.btn-no:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #666, #444);
}

.slot-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 2px solid var(--primary-gold);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 30px rgba(255, 215, 0, 0.2);
}

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

.logo-container {
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: transform 0.3s;
}

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

.logo-slots {
    display: flex;
    gap: 5px;
    font-size: 28px;
    animation: logoSpin 8s ease-in-out infinite;
}

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

.logo-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 26px;
    font-weight: 900;
    color: var(--primary-gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

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

.nav-link {
    position: relative;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    color: var(--text-light);
    text-decoration: none;
    padding: 8px 15px;
    transition: all 0.3s;
    letter-spacing: 1px;
}

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

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

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

.link-badge {
    position: absolute;
    top: -8px;
    right: -5px;
    background: var(--primary-red);
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
}

.contact-btn {
    position: relative;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--primary-red), #8B0000);
    border: 2px solid var(--primary-gold);
    color: white;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    letter-spacing: 1px;
}

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

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

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}

.hero-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
    align-items: center;
    min-height: 600px;
}

.hero-content {
    animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.badge-icon {
    font-size: 24px;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.title-welcome {
    font-family: 'Roboto', sans-serif;
    font-size: 32px;
    font-weight: 300;
    color: var(--text-gray);
}

.title-brand {
    font-family: 'Orbitron', sans-serif;
    font-size: 64px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-gold), #FFA500, var(--primary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 550px;
}

.cta-button {
    position: relative;
    padding: 18px 50px;
    background: linear-gradient(135deg, var(--primary-gold), #FFA500);
    border: none;
    color: #000;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
    font-weight: 700;
    letter-spacing: 2px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

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

.cta-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.cta-button:hover .cta-glow {
    opacity: 1;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 1s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slot-machine-visual {
    display: flex;
    gap: 30px;
    padding: 60px 40px;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    border: 3px solid var(--primary-gold);
    box-shadow: var(--neon-glow), 0 20px 60px rgba(0, 0, 0, 0.5);
}

.visual-reel {
    width: 120px;
    height: 250px;
    background: linear-gradient(180deg, #000, #1a1a1a, #000);
    border: 2px solid var(--primary-red);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 20px rgba(255, 215, 0, 0.2);
}

.visual-reel::before {
    content: '🎰 💎 ⭐ 🍒 🍋';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 60px;
    line-height: 1.5;
    animation: slotSpin 2s linear infinite;
}

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

.features-section {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
}

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

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 25px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.section-subtitle {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    max-width: 900px;
    margin: 0 auto;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.feature-card {
    position: relative;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 50px 40px;
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.4s;
    overflow: hidden;
}

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

.featured-primary {
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.featured-secondary {
    border-color: var(--primary-red);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.2);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

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

.card-icon {
    font-size: 60px;
    margin-bottom: 25px;
}

.card-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 20px;
}

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

.games-section {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
}

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

.games-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-red), var(--primary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.title-underline {
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    margin: 0 auto;
}

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

.game-card {
    position: relative;
    text-decoration: none;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s;
    border: 3px solid rgba(255, 215, 0, 0.3);
}

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

.game-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-red);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px;
    z-index: 10;
    letter-spacing: 1px;
}

.game-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

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

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

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s;
}

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

.play-btn {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold), #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #000;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

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

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

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

.game-tags span {
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid var(--primary-gold);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    color: var(--primary-gold);
}

.about-section {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.about-card {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.4s;
}

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

.about-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
}

.about-content {
    padding: 40px;
}

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

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

.disclaimer-section {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
}

.disclaimer-container {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    padding: 60px;
    border: 3px solid var(--primary-red);
    box-shadow: 0 0 30px rgba(220, 20, 60, 0.3);
}

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

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

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

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

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

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

.disclaimer-item {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(220, 20, 60, 0.3);
    transition: all 0.3s;
}

.disclaimer-item:hover {
    border-color: var(--primary-red);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.2);
}

.item-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.item-content h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.item-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-gray);
}

.contact-section {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    padding: 60px;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

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

.contact-intro {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 40px;
}

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

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

.info-icon {
    font-size: 36px;
    flex-shrink: 0;
}

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

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

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

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

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

.contact-reasons li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
}

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

.contact-form h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.contact-form > p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 10px;
}

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

.form-group label {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    color: var(--primary-gold);
    font-weight: 600;
}

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

.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 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--primary-gold), #FFA500);
    border: none;
    color: #000;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s;
    font-weight: 700;
    letter-spacing: 2px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

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

.arrow {
    font-size: 24px;
    transition: transform 0.3s;
}

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

.badges-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.badges-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding: 40px;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.badge-item {
    transition: transform 0.3s;
}

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

.badge-item img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.slot-footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a0e0e 100%);
    border-top: 3px solid var(--primary-gold);
    margin-top: 120px;
}

.footer-top {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px 60px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
}

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

.footer-slots {
    display: flex;
    gap: 8px;
    font-size: 32px;
}

.footer-logo h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: var(--primary-gold);
}

.footer-description {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 600px;
}

.newsletter h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 15px;
}

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

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 16px;
    transition: all 0.3s;
}

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

.newsletter-form button {
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--primary-gold), #FFA500);
    border: none;
    color: #000;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    cursor: pointer;
    border-radius: 10px;
    font-weight: 700;
    transition: all 0.3s;
    letter-spacing: 1px;
}

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

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

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

.footer-column a {
    display: block;
    color: var(--text-gray);
    text-decoration: none;
    padding: 10px 0;
    font-size: 15px;
    transition: all 0.3s;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

.footer-column a:hover {
    color: var(--primary-gold);
    padding-left: 10px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 40px;
    text-align: center;
}

.footer-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    margin-bottom: 20px;
}

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

@media (max-width: 1200px) {
    .navbar-container {
        flex-wrap: wrap;
    }

    .nav-links {
        order: 3;
        width: 100%;
        justify-content: flex-start;
    }

    .hero-section {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

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

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

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

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

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

@media (max-width: 768px) {
    .title-brand {
        font-size: 42px;
    }

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

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

    .badges-container {
        flex-wrap: wrap;
        gap: 30px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.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;
}

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