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

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.nav {
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    border-bottom: 1px solid rgba(220, 38, 38, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    color: #dc2626;
    font-size: 28px;
}

.logo span {
    color: #dc2626;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #a1a1aa;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
    color: #dc2626;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* Hero */
.hero {
    padding: 80px 0;
    background: radial-gradient(circle at 30% 20%, rgba(220, 38, 38, 0.1), transparent 70%);
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(220, 38, 38, 0.2);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    color: #dc2626;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff, #dc2626);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    font-size: 18px;
    color: #a1a1aa;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-primary {
    background: #dc2626;
    color: white;
    border: none;
}

.btn-primary:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(220, 38, 38, 0.3);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 1px solid #dc2626;
}

.btn-outline:hover {
    background: rgba(220, 38, 38, 0.1);
    transform: translateY(-2px);
}

.btn-large {
    padding: 15px 40px;
    font-size: 18px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #dc2626;
    display: block;
}

.stat-label {
    font-size: 14px;
    color: #a1a1aa;
}

/* Features */
.features {
    padding: 80px 0;
    background: #111111;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.section-header p {
    color: #a1a1aa;
}

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

.feature {
    text-align: center;
    padding: 30px;
    background: #1a1a1a;
    border-radius: 20px;
    border: 1px solid #2a2a2a;
    transition: all 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
    border-color: #dc2626;
}

.feature-icon {
    font-size: 48px;
    color: #dc2626;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.feature p {
    color: #a1a1aa;
}

/* Product page */
.product-page {
    padding: 80px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-gallery {
    position: relative;
}

.product-image {
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    border: 1px solid #2a2a2a;
}

.product-image i {
    font-size: 120px;
    color: #dc2626;
}

.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #dc2626;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
}

.product-info h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.product-rating {
    margin-bottom: 20px;
    color: #fbbf24;
}

.product-rating span {
    color: #a1a1aa;
    margin-left: 10px;
}

.product-price {
    margin-bottom: 20px;
}

.current-price {
    font-size: 32px;
    font-weight: 800;
    color: #dc2626;
}

.old-price {
    font-size: 20px;
    color: #a1a1aa;
    text-decoration: line-through;
    margin-left: 15px;
}

.discount {
    background: #22c55e;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 15px;
}

.product-description {
    margin-bottom: 20px;
    color: #a1a1aa;
}

.product-features {
    list-style: none;
    margin-bottom: 30px;
}

.product-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-features li i {
    color: #22c55e;
}

.product-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.product-guarantee {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding: 20px;
    background: #1a1a1a;
    border-radius: 12px;
    font-size: 13px;
    color: #a1a1aa;
}

.product-guarantee i {
    color: #dc2626;
    margin-right: 6px;
}

/* Checkout page */
.checkout-page {
    padding: 80px 0;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
}

.checkout-form {
    background: #111111;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid #2a2a2a;
}

.checkout-form h2 {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #a1a1aa;
}

.form-group input {
    width: 100%;
    padding: 12px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    color: white;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus {
    outline: none;
    border-color: #dc2626;
}

.payment-methods {
    margin: 30px 0;
}

.payment-methods h3 {
    margin-bottom: 15px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #1a1a1a;
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: pointer;
}

.payment-option input {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.payment-option label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkout-summary {
    background: #111111;
    border-radius: 24px;
    padding: 30px;
    border: 1px solid #2a2a2a;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.checkout-summary h3 {
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #2a2a2a;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    font-size: 18px;
    border-top: 2px solid #dc2626;
    margin-top: 10px;
}

.summary-note {
    margin-top: 20px;
    font-size: 12px;
    color: #a1a1aa;
    text-align: center;
}

.secure-badge {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 8px;
    color: #22c55e;
}

/* Footer */
.footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #2a2a2a;
    color: #a1a1aa;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    font-size: 20px;
    font-weight: 700;
}

.footer-logo i {
    color: #dc2626;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-links a {
    color: #a1a1aa;
    text-decoration: none;
    font-size: 13px;
}

.footer-links a:hover {
    color: #dc2626;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #111111;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-bottom: 1px solid #2a2a2a;
    }
    
    .nav-links.show {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .product-grid,
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    
    .product-gallery {
        order: 1;
    }
    
    .product-info {
        order: 2;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .product-guarantee {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}
/* Stripe specific */
.product-summary {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
}

.product-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #2a2a2a;
}

.product-name {
    font-weight: 500;
}

.product-price {
    color: #dc2626;
    font-weight: 700;
}

.cards-accepted {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 24px;
    color: #a1a1aa;
}

.summary-guarantee {
    margin-top: 20px;
    padding: 12px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 8px;
    text-align: center;
    font-size: 13px;
    color: #22c55e;
}

.summary-guarantee i {
    margin-right: 8px;
}

.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
/* Catalog */
.catalog-header {
    padding: 60px 0 30px;
    text-align: center;
    background: radial-gradient(circle at 30% 20%, rgba(220, 38, 38, 0.1), transparent 70%);
}

.catalog-header h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.catalog-header p {
    color: #a1a1aa;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

.product-card {
    background: #111111;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 1px solid #2a2a2a;
    transition: all 0.3s;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: #dc2626;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.2);
}

.product-card.featured {
    border-color: #dc2626;
    background: linear-gradient(135deg, #111111, #1a0a0a);
}

.product-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #dc2626;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.product-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #dc2626;
}

.product-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.product-card p {
    color: #a1a1aa;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.product-card .product-price {
    font-size: 28px;
    font-weight: 800;
    color: #dc2626;
    margin-bottom: 20px;
}

.product-card .old-price {
    font-size: 16px;
    color: #a1a1aa;
    text-decoration: line-through;
    margin-left: 10px;
    font-weight: normal;
}

.product-card .btn {
    width: 100%;
    justify-content: center;
}
/* Trust section */
.trust {
    padding: 40px 0;
    background: #0d0d0d;
    border-bottom: 1px solid #2a2a2a;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #a1a1aa;
}

.trust-item i {
    font-size: 24px;
    color: #dc2626;
}

@media (max-width: 768px) {
    .trust-badges {
        gap: 30px;
        flex-direction: column;
        align-items: center;
    }
}
/* Cart icon */
.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 24px;
    color: white;
    transition: color 0.3s;
}

.cart-icon:hover {
    color: #dc2626;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -12px;
    background: #dc2626;
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 50%;
    min-width: 18px;
    text-align: center;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100vh;
    background: #111111;
    border-left: 1px solid #2a2a2a;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #2a2a2a;
}

.cart-header h3 {
    font-size: 20px;
}

.close-cart {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: color 0.3s;
}

.close-cart:hover {
    color: #dc2626;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.empty-cart {
    text-align: center;
    color: #a1a1aa;
    padding: 40px 0;
}

.cart-item {
    padding: 15px 0;
    border-bottom: 1px solid #2a2a2a;
}

.cart-item-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.cart-item-name {
    font-weight: 500;
}

.cart-item-price {
    color: #dc2626;
    font-weight: 600;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-qty-btn {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.cart-qty-btn:hover {
    background: #dc2626;
    border-color: #dc2626;
}

.cart-item-qty {
    min-width: 30px;
    text-align: center;
}

.cart-remove-btn {
    background: none;
    border: none;
    color: #a1a1aa;
    cursor: pointer;
    margin-left: auto;
    transition: color 0.3s;
}

.cart-remove-btn:hover {
    color: #dc2626;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #2a2a2a;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    margin-bottom: 20px;
}

.cart-total strong {
    color: #dc2626;
    font-size: 22px;
}

.btn-checkout {
    width: 100%;
    justify-content: center;
}
/* Account page */
.account-page {
    padding: 80px 0;
    min-height: 70vh;
}

.account-card {
    max-width: 500px;
    margin: 0 auto;
    background: #111111;
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    border: 1px solid #2a2a2a;
}

.account-card h1 {
    margin-bottom: 30px;
}

.login-form p {
    color: #a1a1aa;
    margin-bottom: 20px;
}

/* Dashboard */
.dashboard-page {
    padding: 80px 0;
    min-height: 70vh;
}

.dashboard-header {
    margin-bottom: 40px;
    text-align: center;
}

.dashboard-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.purchases-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.purchase-card {
    background: #111111;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid #2a2a2a;
    transition: all 0.3s;
}

.purchase-card:hover {
    border-color: #dc2626;
}

.purchase-icon {
    width: 60px;
    height: 60px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #dc2626;
}

.purchase-info {
    flex: 1;
}

.purchase-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.purchase-info p {
    color: #a1a1aa;
    font-size: 13px;
}

.purchase-info .version {
    color: #22c55e;
    margin-top: 5px;
}

.purchase-actions .btn {
    padding: 10px 20px;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: #111111;
    border-radius: 16px;
}

.empty-state i {
    font-size: 48px;
    color: #dc2626;
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.empty-state p {
    color: #a1a1aa;
    margin-bottom: 20px;
}

.logout-btn {
    background: none;
    border: none;
    color: #a1a1aa;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

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

.info-box {
    max-width: 800px;
    margin: 40px auto 0;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #22c55e;
}

.loading {
    text-align: center;
    color: #a1a1aa;
    padding: 40px;
}
/* Ticket page */
.ticket-page {
    padding: 80px 0;
    min-height: 70vh;
}

.ticket-card {
    max-width: 800px;
    margin: 0 auto;
    background: #111;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid #2a2a2a;
}

.ticket-card h1 {
    text-align: center;
    margin-bottom: 30px;
}

.alert {
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 25px;
    text-align: center;
}

.alert.success {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid #22c55e;
    color: #22c55e;
}

.discord-box {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background: #1a1a1a;
    border-radius: 16px;
}

.discord-box i {
    font-size: 48px;
    color: #5865f2;
    margin-bottom: 15px;
    display: block;
}

.instruction-box {
    background: #0f0f0f;
    padding: 20px;
    border-radius: 16px;
    margin: 20px 0;
}

.instruction-box h3 {
    margin-bottom: 15px;
}

.instruction-box ol {
    margin-left: 20px;
    line-height: 1.6;
}

.instruction-box li {
    margin: 10px 0;
}

.warning {
    color: #f97316;
    margin-top: 15px;
    font-size: 14px;
    text-align: center;
}

.back-link {
    text-align: center;
    margin-top: 30px;
}
.discord-section {
    padding: 60px 0;
    background: #111;
}
.discord-card {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    background: #1a1a1a;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #2a2a2a;
}
.discord-card i {
    font-size: 48px;
    color: #5865f2;
    margin-bottom: 15px;
}
.small {
    font-size: 13px;
    color: #a1a1aa;
    margin-top: 15px;
}