:root {
    --primary: #7adf2f;
    --primary-dark: #67c327;
    --primary-glow: rgba(122, 223, 47, 0.42);
    --accent-warm: #7adf2f;
    --bg-dark: #111720;
    --bg-darker: #0b1016;
    --card-bg: rgba(14, 19, 27, 0.96);
    --card-border: rgba(255, 255, 255, 0.09);
    --text-main: #eef2f8;
    --text-muted: #9aa7bc;
    --font-main: 'Inter', sans-serif;
    --font-display: 'Oswald', sans-serif;
}

body {
    background:
        radial-gradient(1200px 420px at 80% -20%, rgba(122, 223, 47, 0.08), transparent 65%),
        linear-gradient(180deg, #0d1218 0%, #0b1016 50%, #0c1118 100%);
    color: var(--text-main);
    font-family: var(--font-main);
    overflow-x: hidden;
}

/* Typography & Utilities */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-gaming {
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: #0d1016;
    padding: 12px 32px;
    font-family: var(--font-display);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-gaming:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px var(--primary-glow);
}

.btn-gaming.secondary {
    background: transparent;
    border: 1px solid var(--primary);
    box-shadow: inset 0 0 10px rgba(122, 223, 47, 0.12);
}

.btn-gaming.secondary:hover {
    background: rgba(122, 223, 47, 0.1);
}

/* Hero Section */
/* Hero Slider */
/* Hero Slider - Wicodus Style */
.hero-slider {
    min-height: 82vh;
    height: 82vh;
    max-height: 760px;
    position: relative;
    overflow: hidden !important;
    background: #0b0f16;
    /* Dark background from screenshot */
    display: flex;
    align-items: center;
}

.hero-slide {
    position: absolute !important;
    inset: 0;
    opacity: 0;
    transform: translateX(36px);
    transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    align-items: center;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
    visibility: hidden;
}

.hero-slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
    pointer-events: auto;
    visibility: visible;
}

/* Background Image - Full Right Side */
.slide-bg-container {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 6s ease-out;
}

.hero-slide.active .slide-bg {
    transform: scale(1.07) translateX(-0.8%);
    animation: heroBgSlide 5s ease-out;
}

/* Dark Overlay Box on Left with Diagonal Cut */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg, rgba(8, 10, 14, 0.9) 0%, rgba(8, 10, 14, 0.84) 65%, rgba(8, 10, 14, 0.2) 100%);
    z-index: 1;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
    /* Diagonal cut from top-right to bottom-left */
}

@media (min-width: 992px) {
    .slide-overlay {
        width: 50%;
        clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
    }
}

.hero-content {
    position: relative !important;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text {
    max-width: 550px;
    padding-left: 0;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease-out 0.3s;
    position: relative;
    z-index: 2;
}

.hero-slide.active .hero-text {
    opacity: 1;
    transform: translateX(0);
    animation: heroTextSlide 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes heroTextSlide {
    0% {
        opacity: 0;
        transform: translateX(-42px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroBgSlide {
    0% {
        transform: scale(1.13) translateX(2%);
    }
    100% {
        transform: scale(1.07) translateX(-0.8%);
    }
}

.hero-text h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
    text-transform: none;
    /* Wicodus uses normal case often, but let's stick to header font */
    font-family: var(--font-main);
    font-weight: 300;
}

.hero-text h1 span {
    font-weight: 700;
}

.hero-text p {
    font-size: 1.1rem;
    color: #9ca3af;
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 500px;
}

/* Price/Status Badge & Buttons */
.hero-actions {
    display: flex;
    align-items: center;
}

.status-badge {
    background: #151c28;
    color: var(--primary);
    /* Gold/Yellow */
    padding: 15px 25px;
    font-weight: 700;
    font-family: var(--font-display);
    border-right: 1px solid #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-badge .highlight {
    color: #fff;
    text-decoration: line-through;
    opacity: 0.5;
    font-size: 0.9em;
    margin-right: 5px;
}

.btn-wicodus {
    background: #f8fafc;
    color: #0f1012;
    padding: 15px 40px;
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.btn-wicodus:hover {
    background: var(--primary);
    color: #0d1016;
}

/* Arrow Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 2.5rem;
    transition: all 0.3s;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
}

.slider-nav:hover {
    color: #fff;
    background: rgba(0, 0, 0, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

/* Bottom Pagination */
.slider-pagination {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-dash {
    width: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 2px;
}

.slider-dash:hover {
    background: rgba(255, 255, 255, 0.5);
}

.slider-dash.active {
    background: #fff;
    width: 40px;
    height: 3px;
}

/* Stats Section */
.stats-container {
    max-width: 1200px;
    margin: 28px auto 60px;
    padding: 0 20px;
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.stat-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
    padding: 30px;
    border-radius: 4px;
    /* Slightly rounded, almost sharp */
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 90% 100%, 0 100%);
}

.stat-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary);
    background: rgba(122, 223, 47, 0.12);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(20% 0, 100% 0, 100% 80%, 80% 100%, 0 100%, 0 20%);
}

.stat-info h3 {
    font-size: 2rem;
    margin: 0;
    color: #fff;
}

.stat-info p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Features Section */
.features-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-title span {
    color: var(--primary);
    font-family: var(--font-display);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin: 0;
}

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

.feature-box {
    background: linear-gradient(180deg, rgba(10, 13, 18, 0.97) 0%, rgba(8, 11, 16, 0.98) 100%);
    border: 1px solid var(--card-border);
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-box:hover::before {
    transform: scaleX(1);
}

.feature-box:hover {
    background: #10151d;
}

.feature-box i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: block;
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-box p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Discord CTA Section */
.discord-cta {
    margin-top: 100px;
    margin-bottom: 100px;
    padding: 80px 20px;
    background: linear-gradient(rgba(11, 15, 22, 0.86), rgba(11, 15, 22, 0.78)), url('https://images.pexels.com/photos/1714208/pexels-photo-1714208.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover;
    text-align: center;
    border-top: 3px solid var(--primary-dark);
    border-bottom: 3px solid var(--primary);
}

.discord-cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.discord-cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.9);
}

/* Media Queries */
@media (max-width: 992px) {
    .hero-content {
        justify-content: center;
        padding: 0 28px;
        text-align: center;
    }

    .hero-slider {
        min-height: 72vh;
        height: 72vh;
    }

    .slide-overlay {
        width: 100%;
        clip-path: none;
        background: linear-gradient(180deg, rgba(8, 10, 14, 0.85) 0%, rgba(8, 10, 14, 0.72) 55%, rgba(8, 10, 14, 0.45) 100%);
    }

    .hero-text {
        margin: 0 auto;
        max-width: 700px;
    }

    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .slider-nav {
        width: 48px;
        height: 48px;
        font-size: 1.75rem;
    }

    .hero-text h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        min-height: 66vh;
        height: 66vh;
    }

    .hero-content {
        padding: 0 18px;
    }

    .hero-text h1 {
        font-size: 2.35rem;
        margin-bottom: 14px;
    }

    .hero-text p {
        font-size: 1rem;
        margin-bottom: 26px;
    }

    .status-badge,
    .btn-wicodus {
        padding: 12px 18px;
        font-size: 0.85rem;
    }

    .slider-nav {
        display: none;
    }

    .slider-pagination {
        bottom: 16px;
    }

    .stats-container {
        margin-top: 26px;
        padding-top: 40px;
    }
}