:root {
    --bg-base: #050307;
    --brand-primary: #a349a4;
    --brand-glow: #d15dd5;
    --brand-bright: #f29af3;
    --text-main: #f7eff8;
    --text-muted: #c5b1cd;
    --badge-green: #57e389;
    --badge-green-glow: rgba(87, 227, 137, 0.2);
    --discord-color: #5865F2;
    --glass-bg: rgba(20, 15, 25, 0.45);
    --glass-border: rgba(216, 101, 218, 0.25);
    --glass-hover: rgba(216, 101, 218, 0.45);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Segoe UI", "Trebuchet MS", Verdana, sans-serif;
    background-color: var(--bg-base);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    background-image: 
        radial-gradient(circle at 15% 10%, rgba(163, 73, 164, 0.15), transparent 35rem),
        radial-gradient(circle at 85% 40%, rgba(89, 22, 110, 0.15), transparent 40rem),
        linear-gradient(135deg, #030204 0%, #09060d 50%, #050207 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image: 
        linear-gradient(rgba(163, 73, 164, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(163, 73, 164, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 40px;
    align-items: center;
    min-height: 85vh;
    padding-top: 40px;
    padding-bottom: 60px;
}

.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    animation: fadeUp 0.8s ease-out forwards;
}

.hero-title {
    font-size: clamp(3rem, 4.5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.gradient-text {
    background: linear-gradient(135deg, var(--brand-bright), var(--brand-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(163, 73, 164, 0.3);
}

.status-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: rgba(0,0,0,0.25);
    padding: 20px 32px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
    width: fit-content;
}

.badge-undetected {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--badge-green);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background-color: var(--badge-green);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--badge-green);
    animation: pulse 2s infinite;
}

.stats-link {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.stats-link:hover {
    color: var(--brand-bright);
    transform: translateX(4px);
}

.hero-right {
    position: relative;
    animation: fadeUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.media-container {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.video-wrapper {
    position: relative;
    width: 100%;
    flex-grow: 1;
    aspect-ratio: 16 / 9;
    border-radius: 24px;
    overflow: hidden;
    background: #000;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.6),
        0 0 50px rgba(163, 73, 164, 0.25),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: translateZ(0);
}

.video-wrapper iframe {
    position: absolute;
    top: 0; 
    left: 0;
    width: 200%; 
    height: 200%;
    transform: scale(0.5);
    transform-origin: 0 0;
    border: none;
}

.volume-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: rgba(0,0,0,0.4);
    padding: 24px 0;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    height: 300px;
    width: 70px;
    flex-shrink: 0;
}

.volume-icon {
    color: var(--text-muted);
    transition: color 0.3s ease, filter 0.3s ease;
}

.slider-wrapper {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

input[type=range] {
    -webkit-appearance: none;
    background: transparent;
    width: 160px;
    transform: rotate(-90deg);
    cursor: pointer;
}

input[type=range]:focus {
    outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 8px;
    background: var(--glass-bg);
    border-radius: 4px;
    border: 1px solid var(--glass-border);
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: var(--brand-bright);
    box-shadow: 0 0 15px var(--brand-glow);
    margin-top: -7px;
    transition: transform 0.1s ease;
}

input[type=range]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

:root {
    --brand: #a349a4;
    --brand-bright: #f09df2;
    --brand-soft: #7a2e84;
}

html {
    scrollbar-color: var(--brand) #07040a;
    scrollbar-width: thin;
}

body::-webkit-scrollbar {
    width: 12px;
}

body::-webkit-scrollbar-track {
    background: #07040a;
}

body::-webkit-scrollbar-thumb {
    border: 3px solid #07040a;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--brand), var(--brand-soft));
}

body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--brand-bright), var(--brand));
}

.access-section {
    padding: 60px 0 40px;
}

.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin-bottom: 12px;
}

.section-heading p {
    color: #fff;
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
}

.access-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 30px;
}

.access-card {
    position: relative;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.access-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-glow));
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.access-card:hover {
    transform: translateY(-5px);
    border-color: var(--glass-hover);
    box-shadow: 0 20px 60px rgba(163, 73, 164, 0.15);
}

.access-card:hover::before {
    opacity: 1;
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
}

.card-subtitle {
    display: block;
    color: var(--brand-bright);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.card-header h3 {
    font-size: 2rem;
    color: #fff;
}

.duration-toggle {
    display: flex;
    background: rgba(0,0,0,0.4);
    border-radius: 16px;
    padding: 6px;
    margin-bottom: 30px;
    border: 1px solid rgba(255,255,255,0.05);
}

.duration-btn {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.05rem;
    font-weight: 800;
    padding: 12px 0;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.duration-btn.active {
    background: rgba(163, 73, 164, 0.25);
    color: var(--text-main);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.duration-btn:hover:not(.active) {
    color: #fff;
    background: rgba(255,255,255,0.05);
}

.price-display-wrapper {
    text-align: center;
    margin-bottom: 30px;
}

.price-display {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--brand-bright);
    line-height: 1;
}

.buy-btn {
    width: 100%;
    padding: 18px;
    border-radius: 16px;
    border: none;
    background: linear-gradient(135deg, var(--brand-glow), var(--brand-primary));
    color: #fff;
    font-size: 1.15rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(163, 73, 164, 0.3);
    transition: filter 0.2s ease, transform 0.2s ease;
}

.buy-btn:hover {
    filter: brightness(1.15);
    transform: scale(1.02);
}

.reseller-card {
    background: linear-gradient(145deg, rgba(30,20,40,0.6), rgba(15,10,20,0.8));
    text-align: center;
}

.reseller-desc {
    color: var(--text-muted);
    margin-top: 15px;
    font-size: 1.1rem;
}

.discord-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--discord-color);
    color: white;
    padding: 16px 28px;
    border-radius: 16px;
    font-weight: 800;
    font-size: 1.1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.3);
    width: 100%;
}

.discord-cta img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.discord-cta:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(88, 101, 242, 0.5);
    filter: brightness(1.1);
}

.hwid-banner {
    display: flex;
    align-items: center;
    gap: 24px;
    background: linear-gradient(90deg, rgba(20, 15, 25, 0.8), rgba(10, 5, 15, 0.9));
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 30px 40px;
    margin: 40px 0 60px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.hwid-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(163, 73, 164, 0.2);
    color: var(--brand-bright);
    border-radius: 20px;
    flex-shrink: 0;
}

.hwid-text h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: #fff;
}

.hwid-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 var(--badge-green-glow); }
    70% { box-shadow: 0 0 0 14px rgba(87, 227, 137, 0); }
    100% { box-shadow: 0 0 0 0 rgba(87, 227, 137, 0); }
}

@media (max-width: 1200px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    .hero-left {
        align-items: center;
    }
    .status-container {
        align-items: center;
    }
}

@media (max-width: 1100px) {
    .access-grid {
        grid-template-columns: 1fr;
    }
    .hwid-banner {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .media-container {
        flex-direction: column;
    }
    .volume-container {
        flex-direction: row;
        height: auto;
        width: 100%;
        padding: 16px 24px;
    }
    .slider-wrapper {
        height: auto;
        width: 100%;
    }
    input[type=range] {
        transform: none;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .duration-toggle {
        flex-direction: column;
        gap: 6px;
    }
}