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

:root {
    --bg-black: #000000;
    --text-white: #FFFFFF;
    --accent-blue: #38CBE8;
    --blue-glow: rgba(56, 203, 232, 0.6);
    --blue-glow-strong: rgba(56, 203, 232, 0.8);
}

html {
    scroll-behavior: smooth;
}

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

/* Animated Background Grid */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(56, 203, 232, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(56, 203, 232, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    animation: gridMove 20s linear infinite;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid var(--accent-blue);
    border-radius: 50px;
    padding: 15px 30px;
    z-index: 1000;
    box-shadow: 0 0 20px var(--blue-glow);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    height: 50px;
}

.logo-img {
    height: 100%;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px var(--blue-glow));
    transition: all 0.3s ease;
}

.logo-img:hover {
    filter: drop-shadow(0 0 20px var(--blue-glow-strong));
    transform: scale(1.05);
}

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

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

.nav-links a:hover {
    color: var(--accent-blue);
}

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

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

.discord-btn {
    background: var(--accent-blue);
    color: var(--bg-black) !important;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 0 15px var(--blue-glow);
}

.discord-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px var(--blue-glow-strong);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--accent-blue);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 20px 60px;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    z-index: 2;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.glow-text {
    color: var(--accent-blue);
    text-shadow: 0 0 20px var(--blue-glow), 0 0 40px var(--blue-glow);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px var(--blue-glow), 0 0 20px var(--blue-glow);
    }
    to {
        text-shadow: 0 0 20px var(--blue-glow), 0 0 40px var(--blue-glow), 0 0 60px var(--blue-glow);
    }
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: 40px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.brand {
    color: var(--accent-blue);
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s backwards;
}

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

.btn {
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--accent-blue);
    color: var(--bg-black);
    box-shadow: 0 0 20px var(--blue-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px var(--blue-glow-strong);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--accent-blue);
}

.btn-secondary:hover {
    background: var(--accent-blue);
    color: var(--bg-black);
    transform: translateY(-3px);
}

/* Floating Particles */
.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    background: var(--accent-blue);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 15s infinite ease-in-out;
}

.particle:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    width: 100px;
    height: 100px;
    top: 40%;
    left: 70%;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    width: 50px;
    height: 50px;
    top: 80%;
    left: 20%;
    animation-delay: 6s;
}

.particle:nth-child(5) {
    width: 70px;
    height: 70px;
    top: 10%;
    left: 60%;
    animation-delay: 8s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-30px) translateX(20px);
    }
    50% {
        transform: translateY(-60px) translateX(-20px);
    }
    75% {
        transform: translateY(-30px) translateX(10px);
    }
}

/* Sections */
.section {
    padding: 80px 20px;
    position: relative;
}

.alt-bg {
    background: linear-gradient(180deg, rgba(56, 203, 232, 0.05) 0%, transparent 100%);
}

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

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 50px;
    color: var(--accent-blue);
    text-shadow: 0 0 10px var(--blue-glow);
}

.section-title.center {
    text-align: center;
}

/* Info Cards */
.info-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px;
    animation: fadeIn 1s ease;
}

.glow-border {
    border: 2px solid var(--accent-blue);
    box-shadow: 0 0 30px var(--blue-glow);
    transition: all 0.3s ease;
}

.glow-border:hover {
    box-shadow: 0 0 50px var(--blue-glow-strong);
    transform: translateY(-5px);
}

.info-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.highlight {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-blue);
    margin: 30px 0;
}

.welcome-text {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 30px;
    text-align: center;
}

/* Supported Games Carousel */
.games-section {
    padding: 80px 20px;
    overflow: hidden;
}

.games-carousel-main-wrapper {
    width: 100%;
    border-radius: 20px;
    border: 2px solid var(--accent-blue);
    box-shadow: 0 0 30px var(--blue-glow);
    background: rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
}

.games-carousel-main-wrapper::before,
.games-carousel-main-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.games-carousel-main-wrapper::before {
    left: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9), transparent);
}

.games-carousel-main-wrapper::after {
    right: 0;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.9), transparent);
}

.games-carousel-container {
    display: flex;
    flex-direction: column;
}

.games-carousel-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.games-carousel {
    display: flex;
    flex-direction: row;
    will-change: transform;
    align-items: center;
    height: 100%;
}

/* Top row - Scroll Left */
.games-carousel-left {
    animation: scrollLeft 35s linear infinite;
}

.games-carousel-left:hover {
    animation-play-state: paused;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Bottom row - Scroll Right */
.games-carousel-right {
    animation: scrollRight 35s linear infinite;
}

.games-carousel-right:hover {
    animation-play-state: paused;
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.game-item {
    flex-shrink: 0;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.game-item img {
    height: 220px;
    width: auto;
    max-width: 450px;
    border-radius: 15px;
    border: 2px solid rgba(56, 203, 232, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    object-fit: cover;
}

.game-item img:hover {
    transform: scale(1.05);
    border-color: var(--accent-blue);
    box-shadow: 0 0 30px var(--blue-glow);
}

.games-disclaimer {
    text-align: center;
    margin-top: 20px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.games-disclaimer::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--accent-blue);
    margin: 10px auto 0;
    opacity: 0.5;
}

@media (max-width: 768px) {
    .games-carousel-wrapper {
        height: 200px;
    }
    
    .game-item img {
        height: 150px;
    }
    
    .games-carousel-left {
        animation: scrollLeft 25s linear infinite;
    }
    
    .games-carousel-right {
        animation: scrollRight 25s linear infinite;
    }
}

/* Requirements Grid */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.requirement-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid var(--accent-blue);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(56, 203, 232, 0.3);
}

.requirement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 40px var(--blue-glow-strong);
    background: rgba(255, 255, 255, 0.05);
}

.req-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
    color: var(--accent-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

.req-icon svg {
    width: 64px;
    height: 64px;
    stroke: var(--accent-blue);
    filter: drop-shadow(0 0 10px var(--blue-glow));
    transition: all 0.3s ease;
}

.requirement-card:hover .req-icon {
    animation: spin 0.6s ease;
}

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

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.requirement-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--accent-blue);
}

.requirement-card p {
    margin-bottom: 10px;
    opacity: 0.9;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid var(--accent-blue);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 0 20px rgba(56, 203, 232, 0.3);
}

.pricing-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px var(--blue-glow-strong);
}

.pricing-card.featured {
    border: 3px solid var(--accent-blue);
    box-shadow: 0 0 40px var(--blue-glow);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-blue);
    color: var(--bg-black);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--accent-blue);
}

.pricing-icon {
    font-size: 3rem;
    color: var(--accent-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
}

.pricing-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--accent-blue);
    filter: drop-shadow(0 0 8px var(--blue-glow));
    transition: all 0.3s ease;
}

.pricing-card:hover .pricing-icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px var(--blue-glow-strong));
}

.pricing-specs {
    margin-bottom: 30px;
}

.pricing-specs p {
    padding: 10px 0;
    border-bottom: 1px solid rgba(56, 203, 232, 0.2);
}

.pricing-rates {
    margin-bottom: 30px;
}

.rate {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 1.1rem;
}

.rate span {
    color: var(--accent-blue);
    font-weight: 600;
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid var(--accent-blue);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 0 30px var(--blue-glow);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--accent-blue);
}

.faq-toggle {
    font-size: 2rem;
    color: var(--accent-blue);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 25px;
}

.faq-answer p {
    opacity: 0.9;
    line-height: 1.8;
}

/* Discord CTA */
.discord-cta {
    padding: 100px 20px;
}

.cta-card {
    text-align: center;
    padding: 60px 40px;
}

.cta-card h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: var(--accent-blue);
    margin-bottom: 30px;
}

.cta-features {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 2;
}

.btn-discord {
    background: #5865F2;
    color: var(--text-white);
    font-size: 1.2rem;
    padding: 18px 50px;
    box-shadow: 0 0 30px rgba(88, 101, 242, 0.5);
}

.btn-discord:hover {
    background: #4752C4;
    transform: translateY(-5px);
    box-shadow: 0 0 50px rgba(88, 101, 242, 0.8);
}

.discord-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    vertical-align: middle;
    display: inline-block;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.5);
    border-top: 2px solid var(--accent-blue);
    padding: 40px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-brand h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--accent-blue);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footer-info {
    text-align: right;
}

.footer-info p {
    margin-bottom: 5px;
    opacity: 0.8;
}

.footer-link {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-link:hover {
    text-shadow: 0 0 10px var(--blue-glow);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .navbar {
        width: 95%;
        padding: 15px 20px;
    }
    
    .hero {
        padding: 100px 15px 40px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .info-card {
        padding: 30px 20px;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-info {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 60px 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .info-content p {
        font-size: 1rem;
    }
    
    .cta-card {
        padding: 40px 20px;
    }
    
    .cta-card h2 {
        font-size: 1.8rem;
    }
}

/* Animation Classes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}