:root {
    --bg-dark: #050505;
    --nav-bg: rgba(10, 10, 10, 0.7);
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --border-color: rgba(255, 255, 255, 0.08);
    --accent-glow: rgba(255, 255, 255, 0.15);
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-hover-bg: rgba(255, 255, 255, 0.06);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow-x: hidden;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* Announcement Bar */
.announcement-bar {
    background: #ffffff;
    color: #000;
    text-align: center;
    padding: 10px 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    z-index: 1001;
}

.announcement-bar a {
    color: #000;
    text-decoration: none;
    margin-left: 8px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border-bottom: 1px solid #000;
    padding-bottom: 1px;
    transition: var(--transition-smooth);
}

.announcement-bar a:hover {
    opacity: 0.7;
}

/* Navigation */
nav {
    display: flex;
    justify-content: center;
    padding: 25px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.nav-container {
    background: var(--nav-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    display: flex;
    align-items: center;
    padding: 8px 32px;
    gap: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 28px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
    transition: var(--transition-smooth);
    letter-spacing: -0.2px;
}

.nav-links a:hover {
    color: #fff;
    transform: translateY(-1px);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 20px;
    border-left: 1px solid var(--border-color);
}

.btn-login {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 13.5px;
    cursor: pointer;
    padding: 8px 12px;
    transition: var(--transition-smooth);
}

.btn-login:hover {
    color: #fff;
}

.icon-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.icon-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 160px 20px 100px;
    display: flex;
    justify-content: center;
    text-align: center;
    position: relative;
    background: radial-gradient(circle at center, #111 0%, #050505 100%);
}

.hero-content {
    max-width: 900px;
    z-index: 10;
}

.delivery-badge {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.fire-icon {
    font-size: 14px;
}

.hero-title {
    font-size: clamp(48px, 10vw, 84px);
    font-weight: 800;
    letter-spacing: -3.5px;
    line-height: 0.95;
    margin-bottom: 30px;
    color: #fff;
}

.hero-subtitle {
    color: var(--text-muted);
    font-size: clamp(16px, 2.2vw, 20px);
    line-height: 1.5;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* Hero Buttons */
.hero-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.btn-white {
    background: #fff;
    color: #000;
    border: none;
    padding: 16px 36px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 20px rgba(255,255,255,0.1);
}

.btn-dark {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    color: #fff;
    padding: 16px 36px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-white:hover { 
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(255,255,255,0.2);
}

.btn-dark:hover { 
    background: rgba(255, 255, 255, 0.08); 
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.user-display {
    display: none;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 16px;
    border-radius: 100px;
    border: 1px solid var(--border-color);
}

.user-avatar {
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 11px;
    font-weight: 800;
}

.user-name {
    font-size: 13.5px;
    font-weight: 700;
    color: #fff;
}

.btn-logout {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    padding: 4px;
    transition: var(--transition-smooth);
}

.btn-logout:hover {
    color: #f87171;
}

/* Background Floating Objects */
.bg-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-obj {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: move-bg 20s infinite alternate ease-in-out;
}

.obj-1 { width: 500px; height: 500px; top: -100px; left: -100px; background: #fff; }
.obj-2 { width: 600px; height: 600px; bottom: -100px; right: -100px; background: #fff; }
.obj-3 { width: 300px; height: 300px; top: 40%; right: 10%; background: #fff; opacity: 0.08; }
.obj-4 { width: 400px; height: 400px; bottom: 20%; left: 10%; background: #fff; opacity: 0.05; }

@keyframes move-bg {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

/* Hero Visual Elements */
.hero-visual {
    position: relative;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -20px;
}

.glow-orb {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: pulse-glow 5s infinite ease-in-out;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.floating-cards {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 100%;
    z-index: 2;
}

.f-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 28px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    animation: floating-anim 6s infinite ease-in-out;
}

.card-1 { top: 15%; left: 5%; animation-delay: 0s; }
.card-2 { top: 45%; right: 5%; animation-delay: 2s; }
.card-3 { bottom: 10%; left: 30%; animation-delay: 4s; }

@keyframes floating-anim {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(1.5deg); }
}

/* Products Section */
.products-section {
    padding: 120px 20px;
    position: relative;
    z-index: 10;
}

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

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: -1.5px;
    background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.category-group {
    margin-bottom: 100px;
}

.category-title {
    font-size: 12px;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.category-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--border-color), transparent);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.product-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: 35px 30px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(255,255,255,0.06), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    background: var(--card-hover-bg);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.product-icon {
    background: rgba(255, 255, 255, 0.04);
    width: 72px;
    height: 72px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #fff;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
    position: relative;
    z-index: 2;
}

.product-card:hover .product-icon {
    background: rgba(255, 255, 255, 0.08);
    transform: scale(1.1) rotate(3deg);
    border-color: rgba(255, 255, 255, 0.2);
}

.product-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.3));
}

.product-card h4 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.4px;
    z-index: 2;
}

.product-price {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 28px;
    z-index: 2;
}

.btn-buy {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: #fff;
    width: 100%;
    padding: 14px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    display: inline-block;
    margin-top: auto;
    z-index: 2;
}

.product-card:hover .btn-buy {
    background: #fff;
    color: #000;
    border-color: #fff;
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(255,255,255,0.1);
}

/* Stock Badges */
.stock-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 5;
    backdrop-filter: blur(4px);
}

.stock-badge.in-stock {
    background: rgba(74, 222, 128, 0.08);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.2);
}

.stock-badge.low-stock {
    background: rgba(251, 191, 36, 0.08);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.stock-badge.out-of-stock {
    background: rgba(248, 113, 113, 0.08);
    color: #f87171;
    border: 1px solid rgba(248, 113, 113, 0.2);
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 20px;
}

.modal-content {
    background: #0a0a0a;
    border: 1px solid var(--border-color);
    padding: 50px 40px;
    border-radius: 32px;
    width: 100%;
    max-width: 450px;
    text-align: center;
    position: relative;
    box-shadow: 0 30px 100px rgba(0,0,0,0.8);
}

.modal-content h2 {
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: 800;
    letter-spacing: -1px;
}

.modal-content input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    color: #fff;
    margin-bottom: 16px;
    outline: none;
    font-size: 15px;
    transition: var(--transition-smooth);
}

.modal-content input:focus {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-close-modal {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-close-modal:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Legit Section */
.legit-section {
    max-width: 800px;
    margin: 100px auto 40px;
    text-align: center;
    padding: 0 20px;
}

.legit-badge {
    display: inline-block;
    background: rgba(74, 222, 128, 0.1);
    color: #4ade80;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(74, 222, 128, 0.2);
}

.legit-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.legit-text {
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.trust-features {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 30px;
}

/* Loading Download Animation */
.download-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.loader-bar-container {
    width: 140px;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-color);
}

.loader-bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 30%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    animation: loading-bar 2s infinite ease-in-out;
}

@keyframes loading-bar {
    0% { left: -30%; width: 30%; }
    50% { left: 30%; width: 60%; }
    100% { left: 100%; width: 30%; }
}

.download-loader p {
    font-size: 11px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.loader-dot {
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    animation: dot-pulse 1.5s infinite;
}

.loader-dot:nth-child(2) { animation-delay: 0.2s; }
.loader-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes dot-pulse {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.trust-item span {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
}

.trust-item p {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Discord Footer Banner */
.discord-footer-container {
    max-width: 650px;
    margin: 40px auto 100px;
    padding: 0 20px;
}

.discord-banner {
    background: #000;
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.discord-banner:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
    background: #080808;
}

.discord-icon-wrapper {
    background: #111;
    width: 70px;
    height: 70px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.discord-banner:hover .discord-icon-wrapper {
    background: #1a1a1a;
}

.discord-text-content {
    flex-grow: 1;
    text-align: left;
}

.discord-text-content h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 2px;
}

.discord-text-content p {
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 600;
}

.discord-arrow-circle {
    width: 48px;
    height: 48px;
    background: #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.discord-banner:hover .discord-arrow-circle {
    background: #fff;
    color: #000;
}

/* Footer */
footer {
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

footer p {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
}

footer a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

footer a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .nav-container { padding: 8px 20px; gap: 20px; }
    .nav-links { display: none; }
    .hero-title { font-size: 44px; }
    .hero-subtitle { padding: 0; }
    .product-grid { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; }
    .hero-visual { height: 250px; }
    .discord-banner { padding: 20px; gap: 16px; }
    .discord-icon-wrapper { width: 56px; height: 56px; border-radius: 16px; }
    .discord-text-content h3 { font-size: 20px; }
    .discord-arrow-circle { width: 40px; height: 40px; }
}

