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

:root {
    --primary-bg: #0a0a0a;
    --secondary-bg: #1a1a1a;
    --card-bg: #111;
    --neon-green: #00ff88;
    --neon-blue: #00aaff;
    --neon-purple: #aa00ff;
    --neon-yellow: #ffff00;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-accent: #00ff88;
    --border-glow: rgba(0, 255, 136, 0.3);
    --shadow-glow: 0 0 20px rgba(0, 255, 136, 0.3);
}

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

/* Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 20%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 60%, rgba(0, 170, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(170, 0, 255, 0.1) 0%, transparent 50%);
    animation: floatingParticles 20s ease-in-out infinite;
}

.grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
    background-size: 100px 100px;
    animation: gridMove 30s linear infinite;
}

@keyframes floatingParticles {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-glow);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo-section {
    position: relative;
}

.logo-glow {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.logo-glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--neon-green), var(--neon-blue), var(--neon-purple), var(--neon-green));
    border-radius: 12px;
    z-index: -1;
    animation: rotateBorder 3s linear infinite;
}

.logo-text {
    display: block;
    padding: 0.8rem 1.5rem;
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    background: var(--primary-bg);
    border-radius: 8px;
    text-shadow: 0 0 10px var(--neon-green);
    transition: all 0.3s ease;
}

.logo-text:hover {
    color: var(--neon-green);
    text-shadow: 0 0 20px var(--neon-green), 0 0 30px var(--neon-green);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    position: relative;
    text-decoration: none;
    color: var(--text-secondary);
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-green), var(--neon-blue));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--neon-green);
    transition: all 0.3s ease;
    box-shadow: 0 0 5px var(--neon-green);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 10;
    position: relative;
}

.hero-title-wrapper {
    position: relative;
    display: inline-block;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, var(--neon-green), var(--neon-blue), var(--neon-purple));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease-in-out infinite;
}

.neon-text {
    text-shadow: 0 0 30px var(--neon-green);
}

.title-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(0, 255, 136, 0.2) 0%, transparent 70%);
    z-index: -1;
    animation: pulse 4s ease-in-out infinite;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="200" cy="200" r="2" fill="%2300ff88" opacity="0.6"><animate attributeName="opacity" values="0.6;1;0.6" dur="2s" repeatCount="indefinite"/></circle><circle cx="800" cy="300" r="1.5" fill="%2300aaff" opacity="0.4"><animate attributeName="opacity" values="0.4;0.8;0.4" dur="3s" repeatCount="indefinite"/></circle><circle cx="500" cy="700" r="2.5" fill="%23aa00ff" opacity="0.5"><animate attributeName="opacity" values="0.5;1;0.5" dur="2.5s" repeatCount="indefinite"/></circle></svg>') no-repeat;
    background-size: cover;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

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

/* Section Container */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Intro Section */
.intro-section {
    background: var(--secondary-bg);
    position: relative;
}

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

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.title-underline {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-green), var(--neon-blue));
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: var(--shadow-glow);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    text-align: center;
}

/* Features Section */
.features-section {
    background: var(--primary-bg);
    position: relative;
}

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

.feature-card {
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--border-glow);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 255, 136, 0.1) 50%, transparent 70%);
    transform: rotate(-45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.feature-card:hover::before {
    opacity: 1;
    animation: shimmer 1s ease-out;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-green);
    box-shadow: var(--shadow-glow), inset 0 0 20px rgba(0, 255, 136, 0.1);
}

.card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--neon-green), var(--neon-blue), var(--neon-purple), var(--neon-green));
    border-radius: 17px;
    z-index: -1;
    opacity: 0;
    transition: all 0.3s ease;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px var(--neon-green));
}

.feature-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: var(--text-accent);
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-text {
    color: var(--text-secondary);
    line-height: 1.7;
}

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

/* Play Section */
.play-section {
    background: var(--secondary-bg);
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.play-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(170, 0, 255, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.play-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.game-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transform: perspective(1000px) rotateY(-10deg);
    transition: all 0.5s ease;
}

.game-card:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
}

.card-border {
    position: absolute;
    inset: -3px;
    background: linear-gradient(45deg, var(--neon-green), var(--neon-blue), var(--neon-purple), var(--neon-green));
    border-radius: 23px;
    z-index: -1;
    animation: rotateBorder 4s linear infinite;
}

.game-image {
    display: block;
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 17px;
    position: relative;
    z-index: 2;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2) 0%, rgba(170, 0, 255, 0.2) 100%);
    border-radius: 17px;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.play-info {
    text-align: left;
}

.play-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.play-button {
    position: relative;
    background: linear-gradient(45deg, var(--neon-green), var(--neon-blue));
    border: none;
    border-radius: 50px;
    padding: 1rem 3rem;
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-bg);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.play-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.play-button:hover::before {
    left: 100%;
}

.play-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
}

.button-text {
    position: relative;
    z-index: 2;
}

.button-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--neon-green), var(--neon-blue));
    border-radius: 52px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.play-button:hover .button-glow {
    opacity: 0.3;
    animation: rotateBorder 2s linear infinite;
}

/* About Section */
.about-section {
    background: var(--primary-bg);
    position: relative;
}

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

.about-card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
    transition: left 0.8s ease;
}

.about-card:hover::after {
    left: 100%;
}

.about-card:hover {
    border-color: var(--neon-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.about-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    color: var(--text-accent);
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-text {
    color: var(--text-secondary);
    line-height: 1.7;
}

.disclaimer-link {
    text-decoration: none;
}

.link-title {
    transition: all 0.3s ease;
}

.disclaimer-link:hover .link-title {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
}

/* FAQ Section */
.faq-section {
    background: var(--secondary-bg);
    position: relative;
}

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

.faq-item {
    background: var(--card-bg);
    border: 1px solid rgba(0, 255, 136, 0.1);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--neon-green);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--text-accent);
}

.faq-arrow {
    color: var(--neon-green);
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.3);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 1.5rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Badge Section */
.badge-section {
    background: var(--primary-bg);
    padding: 2rem 0;
}

.badge-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.badge-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.badge-item::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--neon-green), var(--neon-blue), var(--neon-purple), var(--neon-green));
    border-radius: 12px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.badge-item:hover::before {
    opacity: 0.6;
    animation: rotateBorder 3s linear infinite;
}

.badge-item img {
    display: block;
    width: 140px;
    height: 90px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

/* Footer */
.footer {
    background: var(--card-bg);
    border-top: 1px solid var(--border-glow);
    position: relative;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem 2rem;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.logo-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
}

.footer-logo-text {
    padding: 0.8rem 1.5rem;
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 8px;
    text-shadow: 0 0 10px var(--neon-green);
    background: rgba(0, 0, 0, 0.3);
}

.footer-disclaimer {
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 136, 0.1);
}

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--neon-green);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.footer-links a:hover {
    color: var(--text-accent);
    text-shadow: 0 0 5px var(--neon-green);
}

.footer-links a:hover::after {
    width: 100%;
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 255, 136, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: start;
        padding-top: 2rem;
        transition: right 0.3s ease;
    }

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

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

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

    .game-card {
        transform: none;
        max-width: 300px;
        margin: 0 auto;
    }

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

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

    .badge-container {
        gap: 1rem;
    }

    .footer-links {
        gap: 1rem;
    }

    .section-container {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .feature-card,
    .about-card {
        padding: 1.5rem;
    }

    .play-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Styling */
::selection {
    background: var(--neon-green);
    color: var(--primary-bg);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-bg);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--neon-green), var(--neon-blue));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(var(--neon-blue), var(--neon-purple));
}

a{
    text-decoration: none;
}

.content{
    padding: 7% 10%;
  }
  .content *{
    line-height: 26px;
  }
  .content-block h2 {
    color: var(--casino-gold);
  }
  
  .content-block p {
    color: rgb(176, 176, 176);
  }

  .play-ground-area {
    padding: 2rem;
    background: black;
    margin-top: 30px;
  }
  
  .play-game {
    max-width: 940px;
    margin: 0 auto;
  }
  