:root {
    --bg-black: #050505;
    --bg-pure-black: #000000;
    --bg-card: rgba(10, 20, 30, 0.6);
    --border-subtle: rgba(94, 234, 255, 0.15);
    /* Light blue border */
    --accent-blue: #0ea5e9;
    /* Sky 500 - Light Blue */
    --accent-blue-dim: rgba(14, 165, 233, 0.1);
    --accent-glow: #38bdf8;
    /* Lighter cyan for glows */
    --accent-green: #10b981;
    --text-white: #f0f9ff;
    --text-gray: #94a3b8;
    --font-main: 'Plus Jakarta Sans', ui-sans-serif, system-ui, sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal,
.reveal-stagger {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active,
.reveal-stagger.active {
    opacity: 1;
    transform: translateY(0);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-black);
    color: var(--text-white);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;

    /* Anti-Copy */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;

    /* geometric background */
    background-image:
        linear-gradient(rgba(14, 165, 233, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14, 165, 233, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-black);
}

::-webkit-scrollbar-thumb {
    background: rgba(14, 165, 233, 0.2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-blue);
}

#stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
}

.bg-glows {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.glow-1 {
    position: absolute;
    top: -20%;
    left: 20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 60%);
    filter: blur(80px);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-subtle);
    background: rgba(5, 5, 5, 0.8);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.nav-logo h2 {
    font-weight: 800;
    font-size: 24px;
    color: var(--text-white);
    letter-spacing: -1px;
}

.nav-logo span {
    color: var(--accent-blue);
}

.nav-logo,
.nav-right,
.nav-actions {
    z-index: 10;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

/* Centered Main Nav */
.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* Right Aligned Utils */
.nav-right {
    margin-left: auto;
    /* Fallback if not absolute */
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-blue);
}

/* DROPDOWN MENU */
.dropdown-content {
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(10, 20, 30, 0.95);
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 10px;
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.nav-links li:hover .dropdown-content {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 12px 20px;
    color: var(--text-gray);
    text-transform: none;
    letter-spacing: 0;
    font-weight: 500;
    border-radius: 8px;
    width: 100%;
    margin-bottom: 5px;
}

.dropdown-content a:hover {
    background: rgba(14, 165, 233, 0.1);
    color: var(--accent-blue);
    padding-left: 25px;
    /* Slide effect */
}

.nav-actions {
    display: flex;
    gap: 15px;
}

.mobile-nav-toggle {
    display: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

/* REBRANDED HERO */
.hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 20px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(40px, 8vw, 80px);
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 600px;
    margin-bottom: 40px;
}

.btn {
    padding: 14px 32px;
    border-radius: 8px;
    /* Sharper radius */
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--accent-blue);
    color: #000;
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(14, 165, 233, 0.5);
}

.btn-outline {
    border: 1px solid var(--border-subtle);
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.05);
}

.btn-outline:hover {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}

/* CARDS REDESIGN */
section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}

.agent-card,
.feature-box,
.discord-card,
.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    /* Less rounded */
    padding: 40px;
    transition: var(--transition);
}

.agent-card:hover,
.feature-box:hover,
.product-card:hover {
    /* Hover Glow Effect */
    border-color: var(--accent-blue);
    box-shadow: 0 0 30px rgba(14, 165, 233, 0.1);
    transform: translateY(-5px);
}

.section-title,
.why-title,
.spreadsheet-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title::after,
.why-title::after,
.spreadsheet-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-blue);
    margin: 20px auto 0;
}

/* Category Filter */
.category-filter {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.cat-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    color: var(--text-gray);
    padding: 10px 24px;
    border-radius: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-size: 13px;
    letter-spacing: 1px;
}

.cat-btn:hover,
.cat-btn.active {
    background: var(--accent-blue);
    color: #000;
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.3);
    border-color: var(--accent-blue);
}

/* Features Grid */
.features-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    /* Increased from default logic */
}

.spreadsheet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 80px;
}

.product-card {
    padding: 15px;
    /* Reduced from 40px */
    overflow: hidden;
    height: 100%;
}

.product-img {
    aspect-ratio: 1/1;
    /* Square */
    width: 100%;
    height: auto;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-bottom: 15px;
}

.product-content {
    padding: 25px;
}

/* Tag Styles */
.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 12px;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    z-index: 5;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-best {
    background: #f97316;
}

.badge-verified {
    background: #3b82f6;
}

.badge-recommended {
    background: #22c55e;
}

.product-card.border-best {
    border-color: #f97316;
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.15);
}

.product-card.border-verified {
    border-color: #3b82f6;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.15);
}

.product-card.border-recommended {
    border-color: #22c55e;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.15);
}

.product-name {
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
}

.product-price {
    color: var(--accent-blue);
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 20px;
    display: block;
}

.btn-buy {
    display: block;
    width: 100%;
    text-align: center;
    background: transparent;
    border: 1px solid var(--accent-blue);
    color: var(--accent-blue);
    padding: 12px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.btn-buy:hover {
    background: var(--accent-blue);
    color: #000;
}

/* Discord Section */
.discord-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(10, 20, 30, 0.8) 100%);
}

.discord-left h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.discord-left h2 span {
    color: var(--accent-blue);
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-subtle);
    padding: 80px 20px 40px;
    background: linear-gradient(to top, rgba(14, 165, 233, 0.05), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    /* Fixed width for logo/disclaimer, rest for links */
    gap: 80px;
    align-items: start;
}

.footer-nav-wrapper {
    display: flex;
    justify-content: flex-end;
    /* Push to right */
}

.footer-links {
    display: flex;
    gap: 100px;
    /* Big gap between Nav, Tools, Social */
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: 0.3s;
    font-size: 16px;
    /* Ensure visible size */
}

.footer-links a:hover {
    color: var(--accent-blue);
    padding-left: 5px;
}

.footer-credit {
    text-align: center;
    padding-top: 40px;
    color: var(--text-gray);
    font-size: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 60px;
}

.footer-credit a {
    color: var(--accent-blue);
    text-decoration: none;
}

/* Mobile */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-nav-toggle {
        display: block;
    }

    .hero-title {
        font-size: 40px;
    }

    .discord-card {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100%;
    background: #0a0a0a;
    border-left: 1px solid var(--border-subtle);
    z-index: 2000;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: 0.4s ease;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
}

/* Secret Admin */
.secret-dot {
    position: fixed;
    top: 0;
    right: 0;
    width: 2px;
    height: 2px;
    background: transparent;
    z-index: 9999;
    cursor: default;
}

.admin-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.admin-login-content {
    background: #111;
    padding: 30px;
    border: 1px solid var(--accent-blue);
    border-radius: 12px;
    width: 300px;
    text-align: center;
}

.admin-login-content input {
    width: 100%;
    padding: 10px;
    margin-top: 15px;
    background: #000;
    border: 1px solid var(--border-subtle);
    color: #fff;
    border-radius: 6px;
}

/* Reviews Marquee */
.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 25px;
    border-radius: 12px;
    width: 350px;
    min-width: 350px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: var(--transition);
}

.review-card:hover {
    border-color: var(--accent-blue);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(14, 165, 233, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-blue);
}

.review-name {
    font-weight: 700;
    color: #fff;
    font-size: 16px;
}

.review-text {
    color: var(--text-gray);
    font-size: 14px;
    font-style: italic;
    line-height: 1.5;
}

/* --- TRACKER PAGE STYLES --- */

.tracker-hero {
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 20px 40px;
}

.tracker-input-group {
    display: flex;
    gap: 15px;
    width: 100%;
    max-width: 800px;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.tracker-input-group input {
    flex: 1;
    min-width: 280px;
    padding: 18px 25px;
    border-radius: 8px;
    background: rgba(20, 20, 25, 0.8);
    border: 1px solid var(--border-subtle);
    color: #fff;
    font-size: 16px;
    font-family: var(--font-main);
    outline: none;
    transition: var(--transition);
}

.tracker-input-group input:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.2);
    background: rgba(30, 30, 35, 0.9);
}

/* --- RESULT SECTION REDESIGN --- */
.tracker-results {
    max-width: 1000px;
    /* Limits width nicely like screenshot */
    margin: 0 auto;
    padding-bottom: 100px;
}

.result-header,
.response-container {
    background: #111;
    /* Darker approach */
    border: 1px solid #333;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.result-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    color: #fff;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.icon-box {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #888;
    border: 1px solid #333;
}

.icon-box i.fa-cube {
    color: #a855f7;
}

/* Purple box */
.icon-box i.fa-magnifying-glass {
    color: #3b82f6;
}

/* Blue search */
.icon-box i.fa-location-dot {
    color: #ef4444;
}

/* Red location */

.info-content {
    display: flex;
    flex-direction: column;
}

.info-content span {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.info-value {
    font-size: 15px;
    font-weight: 700;
    color: #eee;
}

/* Events List */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.event-item {
    display: flex;
    align-items: center;
    /* Center vertically like screenshot */
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    gap: 20px;
    transition: background 0.2s;
}

.event-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.event-icon-col {
    width: 40px;
    /* Fixed width for icon column */
    display: flex;
    justify-content: center;
    color: #888;
    font-size: 18px;
}

.event-details-col {
    flex: 1;
    /* Takes available space */
}

.event-desc {
    font-size: 15px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.4;
}

.event-loc {
    font-size: 13px;
    color: #888;
    display: flex;
    align-items: center;
}

.event-time-col {
    font-size: 13px;
    color: #bbb;
    text-align: right;
    white-space: nowrap;
    min-width: 120px;
    padding-left: 20px;
}

/* Responsive adjustments */
@media(max-width: 600px) {
    .event-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .event-time-col {
        text-align: left;
        padding-left: 0;
        width: 100%;
        color: #666;
        font-size: 12px;
    }

    .event-icon-col {
        display: none;
        /* Hide icon on very small screens to save space if needed, or keep top left */
    }
}

/* Loader */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top: 4px solid var(--accent-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}