:root {
    --bg-color: #080a08;
    --nav-bg: rgba(18, 20, 18, 0.8);
    --element-bg: #111411;
    --element-hover: #1a1e1a;
    --primary: #ffff00;
    --text-main: #ffffff;
    --text-muted: #8b8e8b;
    --border-color: rgba(255, 255, 255, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.5;
    background-image: radial-gradient(circle at 50% 0%, rgba(255, 255, 0, 0.03) 0%, transparent 50%);
    min-height: 100vh;
}

/* Navbar */
.navbar {
    padding: 24px 0;
    display: flex;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--nav-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    padding: 8px 12px 8px 24px;
    border-radius: 100px;
    width: 90%;
    max-width: 800px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 15px;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
}

.badge {
    background-color: rgba(255, 255, 0, 0.1);
    color: var(--primary);
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 4px;
    font-weight: 600;
}

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

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    color: var(--text-main);
}

.nav-link.active {
    color: var(--text-main);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background-color: var(--primary);
    box-shadow: 0 0 8px var(--primary);
    border-radius: 2px;
}

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

.cart-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.cart-btn:hover {
    color: var(--text-main);
    border-color: rgba(255, 255, 255, 0.1);
    background: var(--element-hover);
}

.connect-btn {
    background-color: var(--primary);
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.connect-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 255, 0, 0.3);
}

/* Main Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
}

/* Hero Section */
.hero-section {
    margin-bottom: 48px;
}

.catalog-label {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.catalog-label .line {
    width: 30px;
    height: 1px;
    background-color: var(--primary);
    opacity: 0.5;
}

.page-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.page-title span {
    font-style: italic;
    color: var(--text-muted);
    font-weight: 400;
}

.description {
    color: var(--text-muted);
    font-size: 15px;
    max-width: 400px;
}

/* Filters Section */
.filters-section {
    margin-bottom: 32px;
}

.search-filter-bar {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.search-box {
    flex: 1;
    min-width: 300px;
    position: relative;
    display: flex;
    align-items: center;
}

.search-box i {
    position: absolute;
    left: 16px;
    color: var(--text-muted);
    font-size: 14px;
}

.search-box input {
    width: 100%;
    background-color: var(--element-bg);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 12px 16px 12px 42px;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.search-box input:focus {
    border-color: rgba(255, 255, 0, 0.5);
}

.dropdowns {
    display: flex;
    gap: 12px;
}

.custom-select {
    position: relative;
    display: flex;
    align-items: center;
}

.custom-select select {
    appearance: none;
    background-color: var(--element-bg);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 12px 36px 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    outline: none;
    min-width: 160px;
}

.custom-select select:focus {
    border-color: rgba(255, 255, 255, 0.2);
}

.custom-select i {
    position: absolute;
    right: 16px;
    color: var(--text-muted);
    font-size: 12px;
    pointer-events: none;
}

/* Category Tabs */
.category-tabs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.tab {
    background-color: var(--element-bg);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.tab:hover {
    background-color: var(--element-hover);
    color: var(--text-main);
}

.tab.active {
    background-color: var(--primary);
    color: #000;
    border-color: var(--primary);
    font-weight: 600;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    min-height: 400px; /* Gives some space even when empty */
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .search-filter-bar {
        flex-direction: column;
    }
    
    .dropdowns {
        width: 100%;
    }
    
    .custom-select {
        flex: 1;
    }
    
    .custom-select select {
        width: 100%;
    }
}

/* Home Hero Section */
.hero-home {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    min-height: 60vh;
    padding: 40px 0;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content .tag {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-main);
}

.smaller-text {
    font-size: 0.8em;
    display: block;
    margin-top: 4px;
    color: var(--primary);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.small-subtitle {
    font-size: 15px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 24px;
    align-items: center;
}

.btn-primary {
    background-color: var(--primary);
    color: #000;
    border: none;
    padding: 12px 28px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 0, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    color: var(--primary);
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 400px;
}

/* Levitating KZ */
.floating-kz {
    font-size: 200px;
    font-weight: 900;
    font-style: italic;
    color: transparent;
    -webkit-text-stroke: 3px var(--primary);
    text-shadow: 0 0 50px rgba(255, 255, 0, 0.15);
    animation: levitate 5s ease-in-out infinite;
    user-select: none;
}

@keyframes levitate {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-25px); }
    100% { transform: translateY(0px); }
}

@media (max-width: 900px) {
    .hero-home {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .floating-kz {
        font-size: 120px;
    }
}

/* Partners Section */
.partners-section {
    margin-top: 110px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.partners-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.partners-list {
    display: flex;
    gap: 40px;
}

.partners-list span {
    font-size: 14px;
    font-weight: 800;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s;
}

.partners-list span:hover {
    color: var(--text-main);
}

@media (max-width: 900px) {
    .partners-section {
        flex-direction: column;
        gap: 20px;
        margin-top: 100px;
    }
    
    .partners-list {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Features Section */
.features-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 80px;
    margin-bottom: 80px;
}

.feature-box {
    background-color: #0b0c0b;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px 24px;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: left;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 255, 0, 0.15);
}

.feature-icon {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--primary);
    background-color: rgba(255, 255, 0, 0.05);
}

.feature-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .features-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features-section {
        grid-template-columns: 1fr;
    }
}

/* Stats Section */
.stats-section {
    margin-top: 180px;
    margin-bottom: 100px;
    text-align: center;
}

.stats-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.stats-label .line {
    width: 40px;
    height: 1px;
    background-color: var(--primary);
}

.stats-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 50px;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-item {
    background-color: #0b0c0b;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 35px 30px;
    text-align: left;
    position: relative;
    display: flex;
    flex-direction: column;
}

.stat-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.stat-icon {
    width: 32px;
    height: 32px;
    border: 1px solid var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 14px;
}

.stat-badge {
    border: 1px solid rgba(255, 255, 0, 0.3);
    color: var(--primary);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
}

.stat-badge .dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-number span {
    font-size: 20px;
    color: var(--primary);
}

.stat-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
    min-height: 34px;
    margin-bottom: 25px;
}

.stat-bar {
    height: 3px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    width: 100%;
    margin-top: auto;
}

.stat-progress {
    height: 100%;
    background-color: var(--primary);
    border-radius: 2px;
}

@media (max-width: 1024px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .stats-container {
        grid-template-columns: 1fr;
    }
}

/* Footer Section */
.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 60px 0;
    margin-top: 50px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.footer-col h4 {
    color: var(--text-main);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--text-main);
}

@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* Support Section */
.support-hero {
    padding: 100px 0 60px;
    text-align: center;
}

.support-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

.support-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.support-label .line {
    width: 40px;
    height: 1px;
    background-color: var(--primary);
}

.support-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 20px;
}

.support-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.search-bar-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 16px;
}

.search-input {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px 20px 15px 50px;
    color: var(--text-main);
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
}

.search-input::placeholder {
    color: var(--text-muted);
}

.support-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.support-card {
    background-color: #0b0c0b;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 255, 0, 0.05);
    border-color: rgba(255, 255, 0, 0.2);
}

.support-card-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 25px;
}

.support-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 12px;
}

.support-card-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

@media (max-width: 900px) {
    .support-cards {
        grid-template-columns: 1fr;
    }
}
