/* Quantum Scripts - Main CSS File */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo img {
    height: 40px;
    width: auto;
}

.main-nav {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #00d4ff;
}

.user-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-icon {
    position: relative;
    cursor: pointer;
}

.login-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.login-btn:hover {
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://i.imgur.com/K2lfQa3.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-logo {
    max-width: 300px;
    margin-bottom: 2rem;
}

/* Product Grid */
.products-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 15px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #333;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #00d4ff;
}

.product-description {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.product-actions {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: #00d4ff;
    border: 1px solid #00d4ff;
}

.btn:hover {
    transform: translateY(-2px);
}

/* Special Sections */
.special-section {
    background: linear-gradient(135deg, #2d1b69 0%, #11998e 100%);
    padding: 3rem 2rem;
    margin: 3rem 0;
    text-align: center;
}

.summer-sale {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 100%);
}

.discord-section {
    background: linear-gradient(135deg, #7289da 0%, #5865f2 100%);
}

/* Recent Payments */
.recent-payments {
    background: #1a1a2e;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.payment-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #333;
}

.payment-item:last-child {
    border-bottom: none;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.payment-info {
    flex: 1;
}

.payment-time {
    color: #888;
    font-size: 0.8rem;
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 3rem 2rem;
    border-top: 1px solid #333;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    color: #00d4ff;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #00d4ff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #333;
    color: #888;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Category Page Styles */
.category-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://i.imgur.com/8U68sgK.jpeg');
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px;
}

.category-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.category-subtitle {
    font-size: 1.2rem;
    color: #ccc;
}

/* FAQ Styles */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.faq-tabs {
    display: flex;
    margin-bottom: 2rem;
    border-bottom: 1px solid #333;
}

.faq-tab {
    padding: 1rem 2rem;
    background: none;
    border: none;
    color: #ccc;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-tab.active {
    color: #00d4ff;
    border-bottom: 2px solid #00d4ff;
}

.faq-item {
    margin-bottom: 2rem;
    background: #1a1a2e;
    padding: 1.5rem;
    border-radius: 10px;
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #00d4ff;
}

.faq-answer {
    color: #ccc;
    line-height: 1.6;
}

/* Review Styles */
.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.review-card {
    background: #1a1a2e;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #00d4ff;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.review-user {
    font-weight: 600;
    color: #00d4ff;
}

.review-product {
    color: #888;
    font-size: 0.9rem;
}

.review-text {
    color: #ccc;
    font-style: italic;
}

/* Subscription Styles */
.subscription-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.subscription-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    position: relative;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

.subscription-card:hover {
    transform: translateY(-5px);
}

.subscription-card.featured {
    border: 2px solid #00d4ff;
    transform: scale(1.05);
}

.subscription-price {
    font-size: 2rem;
    font-weight: bold;
    color: #00d4ff;
    margin-bottom: 1rem;
}

.subscription-features {
    list-style: none;
    margin: 1.5rem 0;
}

.subscription-features li {
    padding: 0.5rem 0;
    color: #ccc;
}

.subscription-features li:before {
    content: "✓ ";
    color: #00d4ff;
    font-weight: bold;
}

/* Currency Selector */
.currency-selector {
    position: relative;
    display: inline-block;
}

.currency-dropdown {
    background: #1a1a2e;
    border: 1px solid #333;
    color: white;
    padding: 0.5rem;
    border-radius: 5px;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    right: -300px;
    top: 0;
    width: 300px;
    height: 100vh;
    background: #1a1a2e;
    z-index: 1001;
    transition: right 0.3s ease;
    padding: 2rem;
    overflow-y: auto;
}

.cart-sidebar.open {
    right: 0;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
}

.cart-overlay.open {
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #1a1a2e;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }
    
    .main-nav.open {
        left: 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .subscription-grid {
        grid-template-columns: 1fr;
    }
    
    .subscription-card.featured {
        transform: none;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a2e;
}

::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #764ba2;
}
