:root {
    --accent: #7c3aed;
    --accent-glow: rgba(124, 58, 237, 0.3);
    --bg-dark: #020202;
    --card-bg: rgba(12, 12, 12, 0.9);
    --border: rgba(255, 255, 255, 0.05);
    --warning: #ff4444;
    --success: #10b981;
    --coming-soon: #555;
}

body {
    margin: 0; padding: 0;
    background-color: var(--bg-dark);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

#star-canvas {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 50% 10%, #150a2e 0%, #020202 100%);
}

.container { max-width: 1000px; margin: 0 auto; padding: 20px; }

.header { text-align: center; margin-bottom: 40px; }
.brand-name { font-size: 3rem; font-weight: 900; letter-spacing: -2px; margin: 0; }
.purple { color: var(--accent); text-shadow: 0 0 25px var(--accent-glow); }
.hero-sub { opacity: 0.4; font-size: 0.75rem; letter-spacing: 4px; text-transform: uppercase; margin-top: 5px; font-weight: 700; }

.req-bar {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    backdrop-filter: blur(5px);
}
.req-item { display: flex; align-items: center; gap: 10px; font-size: 0.8rem; font-weight: 600; color: #bbb; }
.req-item i { color: var(--accent); }

.section-label {
    font-size: 0.7rem; font-weight: 900; text-transform: uppercase;
    letter-spacing: 3px; color: var(--accent); margin: 40px 0 25px 0;
    display: flex; align-items: center; justify-content: center; text-align: center;
}
.section-label::before, .section-label::after { 
    content: ""; height: 1px; width: 50px; background: linear-gradient(to right, transparent, var(--accent)); margin: 0 15px; 
}
.section-label::after { background: linear-gradient(to left, transparent, var(--accent)); }

.pro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 0 auto;
}
.pro-card {
    background: rgba(15, 15, 15, 0.95);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 25px 20px;
    position: relative;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.pro-card.featured { border-color: var(--accent); box-shadow: 0 0 20px rgba(124, 58, 237, 0.1); }
.pro-card.limited { border-color: var(--success); }

.badge {
    position: absolute; top: -10px; right: 15px;
    padding: 4px 10px; border-radius: 20px; font-size: 0.6rem; font-weight: 900; letter-spacing: 1px;
}
.badge.popular { background: var(--accent); color: white; }
.badge.timer { background: var(--success); color: white; animation: pulse 2s infinite; }
.badge.soon { background: var(--coming-soon); color: #fff; }

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.pro-card h3 { font-size: 1.1rem; margin: 0; font-weight: 800; }
.pro-card .price { font-size: 2.2rem; font-weight: 900; margin: 10px 0; }
.pro-card .price span { font-size: 1.2rem; }

.pro-features { list-style: none; padding: 0; margin: 20px 0; font-size: 0.8rem; color: #ccc; }
.pro-features li { margin-bottom: 10px; display: flex; align-items: center; }
.pro-features i { color: var(--accent); margin-right: 12px; font-size: 0.75rem; }

.other-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
}
.other-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    transition: 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.other-card:hover { border-color: var(--accent); transform: translateY(-5px); }
.other-card h3 { font-size: 1rem; margin: 0; font-weight: 800; }
.other-card .price { font-size: 1.6rem; font-weight: 900; margin: 10px 0; }
.hw-tag { color: var(--warning); font-size: 0.55rem; font-weight: 900; margin-bottom: 15px; display: block; letter-spacing: 1px; }

.lite-features { list-style: none; padding: 0; margin: 10px 0 20px 0; font-size: 0.7rem; color: #888; text-align: left; }
.lite-features li { margin-bottom: 6px; display: flex; align-items: center; }
.lite-features i { color: var(--accent); margin-right: 8px; font-size: 0.55rem; }

/* Marquee Styles */
.marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    margin-top: 30px;
    padding: 20px 0;
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 15px;
    animation: scroll 60s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

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

.review-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 15px;
    font-size: 0.75rem;
    width: 280px; /* Fixed width for smooth scrolling */
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    transition: background 0.2s;
}
.review-card:hover { background: rgba(255, 255, 255, 0.05); }

.review-header { display: flex; justify-content: space-between; margin-bottom: 8px; border-bottom: 1px solid var(--border); padding-bottom: 6px; }
.rev-user { font-weight: 800; color: var(--accent); }
.rev-date { opacity: 0.3; font-size: 0.65rem; }
.rev-text { color: #ccc; line-height: 1.4; font-style: italic; }

[data-sell-store] {
    width: 100%;
    background: white !important;
    color: black !important;
    border: none !important;
    padding: 12px !important;
    border-radius: 8px !important;
    font-weight: 900 !important;
    font-size: 0.8rem !important;
    text-transform: uppercase;
    cursor: pointer !important;
    transition: 0.2s;
    letter-spacing: 1px;
}
.pro-card.featured [data-sell-store], .pro-card.limited [data-sell-store] { 
    background: var(--accent) !important; color: white !important; 
}
.pro-card.limited [data-sell-store] { background: var(--success) !important; }
[data-sell-store]:hover { filter: brightness(0.85); transform: scale(1.02); }
[disabled] { cursor: not-allowed !important; opacity: 0.5; }

.discord-section {
    background: linear-gradient(90deg, rgba(124, 58, 237, 0.1) 0%, rgba(12, 12, 12, 0.4) 100%);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    backdrop-filter: blur(10px);
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.discord-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 2px; height: 100%;
    background: var(--accent);
    box-shadow: 0 0 15px var(--accent);
}

.discord-info h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.status-tag {
    font-size: 0.65rem;
    letter-spacing: 1px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.live-pulse {
    width: 8px; height: 8px;
    background: var(--success);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--success);
    animation: pulse 2s infinite;
}

.discord-btn {
    background: #5865F2; /* Official Discord Blurple */
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 900;
    font-size: 0.8rem;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: 0.2s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
}

.discord-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
    box-shadow: 0 5px 15px rgba(88, 101, 242, 0.4);
}

/* Mobile fix */
@media (max-width: 768px) {
    .discord-section { flex-direction: column; text-align: center; padding: 30px; }
    .discord-section::before { width: 100%; height: 2px; }
}

.footer { margin-top: 80px; padding: 40px; text-align: center; font-size: 0.7rem; opacity: 0.4; border-top: 1px solid var(--border); }

.legacy-link {
    text-align: center;
    margin: 40px 0;
    font-size: 0.8rem;
    font-weight: 600;
    color: #666;
}

.legacy-link a {
    color: var(--accent);
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
    transition: color 0.3s ease;
}

.legacy-link a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--accent);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.legacy-link a:hover {
    color: #fff;
}

.legacy-link a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}