/* LawPack Studio - Apple-like Design */

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

:root {
    --bg-primary: #0f0f0f;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #252525;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --border-color: #2a2a2a;
    --hover-border: #3a3a3a;
    --accent: #ffffff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.8);
    border-bottom-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    height: 72px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1);
}

.nav-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background-color: var(--text-primary);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
    color: rgba(255, 255, 255, 0.9);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-badge {
    background-color: var(--accent);
    color: var(--bg-primary);
    border-radius: 10px;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: 600;
    margin-left: 4px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(0.5px);
    -webkit-backdrop-filter: blur(0.5px);
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.15), rgba(0,0,0,0.65));
    z-index: 2;
}

.hero-slide {
    will-change: opacity;
    transform: scale(1.05);
    transition: opacity 3s ease-in-out, transform 20s ease-out;
}

.hero-slide.active {
    transform: scale(1);
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 24px;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-content h1 {
    font-size: 96px;
    font-weight: 100;
    margin-bottom: 32px;
    letter-spacing: -6px;
    line-height: 1.02;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero-content p {
    font-size: 28px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 64px;
    font-weight: 300;
    letter-spacing: -1px;
    animation: fadeInUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    letter-spacing: 0.2px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background-color: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

.btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.btn-primary::before {
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.05), transparent);
}

/* Sections */
.section {
    padding: 200px 32px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    background-color: var(--bg-primary);
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 120px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.06));
    opacity: 0.6;
}

.section-title {
    font-size: 76px;
    font-weight: 100;
    margin-bottom: 140px;
    text-align: center;
    letter-spacing: -4.5px;
    line-height: 1.01;
    color: rgba(255, 255, 255, 0.98);
    position: relative;
    display: inline-block;
    width: 100%;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.25), transparent);
    opacity: 0.8;
}

.about-content {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.about-text {
    font-size: 21px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 300;
    letter-spacing: -0.4px;
}

/* Expanded About Layout */
.about-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    align-items: start;
    text-align: left;
}

.about-col {
    background: linear-gradient(145deg, #1f1f1f 0%, #1a1a1a 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.about-col p {
    margin: 0 0 12px 0;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-feature {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 14px 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.about-feature p {
    margin: 6px 0 0 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.about-tag {
    display: inline-block;
    padding: 6px 10px;
    background: linear-gradient(135deg, #5865F2 0%, #8ea1ff 100%);
    color: white;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2px;
}

@media (max-width: 768px) {
    .about-grid {
        gap: 20px;
    }
    .about-col {
        padding: 18px;
    }
}

/* FAQ */
.faq-section {
    padding-top: 60px;
}
.faq-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}
.faq-card {
    background: linear-gradient(150deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 18px 20px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.faq-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #5865F2 0%, #8ea1ff 100%);
    opacity: 0.8;
}
.faq-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.15);
}
.faq-question {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.2px;
    color: rgba(255, 255, 255, 0.96);
}
.faq-answer {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

@media (max-width: 768px) {
    .faq-grid {
        gap: 14px;
    }
    .faq-card {
        padding: 16px;
    }
}

.products-footer {
    text-align: center;
    margin-top: 100px;
    padding-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
}

/* Verified Partners Section */
.partners-section {
    padding: 120px 32px;
    background-color: var(--bg-primary);
    position: relative;
}

.partners-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.partners-title {
    font-size: 48px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 64px;
    letter-spacing: -2px;
    color: rgba(255, 255, 255, 0.98);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 0;
}

@media (min-width: 1200px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1600px) {
    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.partner-card {
    background-color: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    will-change: transform;
}

.partner-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.partner-banner {
    width: 100%;
    height: 120px;
    overflow: hidden;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
}

.partner-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.partner-card:hover .partner-banner-img {
    transform: scale(1.03);
}

.partner-card-content {
    padding: 28px 24px;
    text-align: center;
    position: relative;
}

.partner-logo-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 18px;
}

.partner-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    display: block;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    padding: 6px;
}

.partner-verified-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #1DA1F2 0%, #0d8bd9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--bg-secondary);
    box-shadow: 0 2px 8px rgba(29, 161, 242, 0.4);
    z-index: 10;
}

.partner-verified-badge svg {
    width: 14px;
    height: 14px;
}

.partner-name {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 14px;
    letter-spacing: -0.3px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.98);
    line-height: 1.3;
}

.partner-verified-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #1DA1F2 0%, #0d8bd9 100%);
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(29, 161, 242, 0.3);
    color: white;
    flex-shrink: 0;
}

.partner-verified-icon svg {
    width: 12px;
    height: 12px;
}

.partner-discord-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 18px;
    background-color: rgba(88, 101, 242, 0.15);
    color: #5865F2;
    border: 1px solid rgba(88, 101, 242, 0.3);
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    margin-top: 10px;
    transition: all 0.2s ease;
}

.partner-discord-link svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.partner-discord-link:hover {
    background-color: rgba(88, 101, 242, 0.25);
    border-color: rgba(88, 101, 242, 0.5);
    color: #7289da;
    transform: translateY(-1px);
}

@media (max-width: 1024px) {
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .partners-section {
        padding: 80px 24px;
    }
    
    .partners-title {
        font-size: 36px;
        margin-bottom: 40px;
        letter-spacing: -1.5px;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .partner-banner {
        height: 100px;
    }
    
    .partner-card-content {
        padding: 24px 20px;
    }
    
    .partner-logo {
        width: 70px;
        height: 70px;
    }
    
    .partner-verified-badge {
        width: 26px;
        height: 26px;
        border-width: 2.5px;
    }
    
    .partner-verified-badge svg {
        width: 13px;
        height: 13px;
    }
    
    .partner-name {
        font-size: 18px;
    }
    
    .partner-verified-icon {
        width: 18px;
        height: 18px;
    }
    
    .partner-verified-icon svg {
        width: 11px;
        height: 11px;
    }
    
    .partner-discord-link {
        padding: 7px 16px;
        font-size: 12px;
    }
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 40px;
    justify-items: center;
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 48px;
    }
}

.products-grid:empty::after {
    content: 'No products available yet.';
    display: block;
    text-align: center;
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 300;
    padding: 80px 20px;
    grid-column: 1 / -1;
}

.product-card {
    background: linear-gradient(145deg, #2a2a2a 0%, #252525 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    width: 100%;
    max-width: 320px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.product-card:hover {
    border-color: rgba(255, 255, 255, 0.14);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.product-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-image {
    transform: scale(1.04);
}

.product-info {
    padding: 16px 18px 20px;
    position: relative;
}

.product-category {
    display: inline-block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 10px;
    font-weight: 600;
    padding: 5px 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
}

.product-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: -0.3px;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.96);
}
.custom-order-client {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.product-description {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 14px;
    line-height: 1.6;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 400;
}

.product-price {
    font-size: 17px;
    font-weight: 600;
    margin-top: 4px;
    letter-spacing: -0.2px;
    color: rgba(255, 255, 255, 0.98);
}

.custom-order-badge {
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 10px;
    border-radius: 10px;
    letter-spacing: 0.2px;
}





/* Forms */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-primary);
    font-size: 14px;
    font-family: inherit;
    transition: all 0.2s ease;
    border-radius: 12px;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: rgba(255,255,255,0.25);
    box-shadow: 0 0 0 3px rgba(255,255,255,0.08);
}

/* Partner Apply Page */
.partner-apply-section {
    padding: 120px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.profile-section {
    padding-top: 80px;
    padding-bottom: 80px;
}
.partner-apply-container {
    max-width: 820px;
    margin: 0 auto;
    background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.07), rgba(255,255,255,0.02)),
                rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 22px;
    padding: 46px;
    box-shadow: 0 20px 52px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px) saturate(130%);
    -webkit-backdrop-filter: blur(20px) saturate(130%);
}
.apply-lead {
    text-align: center;
    color: rgba(255, 255, 255, 0.78);
    margin: 12px auto 28px;
    max-width: 640px;
    font-size: 15px;
    line-height: 1.6;
}
.partner-apply-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.apply-step {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px 22px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.26);
}
.partner-apply-container .section-title {
    text-align: center;
    margin-bottom: 20px;
}
.apply-step-label {
    display: inline-block;
    padding: 6px 10px;
    background: linear-gradient(135deg, #5865F2 0%, #8ea1ff 100%);
    color: #fff;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin-bottom: 12px;
}
.apply-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}
.apply-actions .btn {
    min-width: 160px;
    justify-content: center;
}
.partner-apply-container .btn-primary {
    background: linear-gradient(135deg, #8ea1ff 0%, #5865F2 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    box-shadow: 0 10px 24px rgba(88,101,242,0.35);
}
.partner-apply-container .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(88,101,242,0.42);
}

@media (max-width: 768px) {
    .partner-apply-container {
        padding: 22px;
    }
    .apply-actions {
        justify-content: center;
    }
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 16px;
    margin-top: 12px;
}
.profile-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px 22px;
    box-shadow: 0 14px 32px rgba(0,0,0,0.28);
}
.profile-card-title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: rgba(255, 255, 255, 0.96);
    margin-bottom: 10px;
}
.profile-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.profile-meta span {
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
    letter-spacing: 0.1px;
}
.profile-meta strong {
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.1px;
}
.profile-note {
    margin-top: 10px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.profile-downloads-grid {
    gap: 14px;
    justify-items: flex-start;
}
.profile-download-card {
    max-width: 220px;
}
.profile-download-cover {
    height: 120px;
}
.profile-download-desc {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.logout-row {
    margin: 24px auto 0;
    justify-content: center;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:hover {
    border-color: var(--hover-border);
    transform: scale(1.02);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 16px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    font-size: 16px;
    margin-bottom: 4px;
}

.gallery-description {
    font-size: 12px;
    color: var(--text-secondary);
}

/* Category Filter */
.category-filter {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 48px;
}

.category-btn {
    padding: 8px 20px;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.category-btn:hover,
.category-btn.active {
    background-color: var(--text-primary);
    color: var(--bg-primary);
}


/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--text-primary);
    color: var(--bg-primary);
    border: none;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: var(--transition);
}

.chat-toggle:hover {
    transform: scale(1.1);
}

.chat-container {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    height: 600px;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: none;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.chat-container.open {
    display: flex;
}

.chat-header {
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-close {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 20px;
    cursor: pointer;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-message {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.4;
}

.chat-message.customer {
    align-self: flex-end;
    background-color: var(--text-primary);
    color: var(--bg-primary);
}

.chat-message.supporter {
    align-self: flex-start;
    background-color: var(--bg-tertiary);
    color: var(--text-primary);
}

.chat-input-area {
    padding: 16px;
    border-top: 1px solid var(--border-color);
}

.chat-input-group {
    display: flex;
    gap: 8px;
}

.chat-input {
    flex: 1;
    padding: 12px;
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 14px;
    font-family: inherit;
    border-radius: 8px;
}

.chat-send {
    padding: 12px 20px;
    background-color: var(--text-primary);
    color: var(--bg-primary);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}

/* Admin Styles */
.admin-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 48px 32px;
    min-height: calc(100vh - 64px);
    margin-top: 64px;
}

.admin-header {
    font-size: 56px;
    font-weight: 200;
    margin-bottom: 48px;
    letter-spacing: -2px;
    line-height: 1.05;
    color: rgba(255, 255, 255, 0.95);
}

.admin-message {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 32px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.2px;
    animation: fadeIn 0.3s ease-out;
}

.admin-message.success {
    background-color: rgba(0, 255, 0, 0.08);
    border: 1px solid rgba(0, 255, 0, 0.2);
    color: #00ff88;
}

.admin-message.error {
    background-color: rgba(255, 0, 0, 0.08);
    border: 1px solid rgba(255, 0, 0, 0.2);
    color: #ff4444;
}

.admin-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0;
}

.admin-tab {
    padding: 14px 28px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 400;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    letter-spacing: 0.2px;
    position: relative;
    margin-bottom: -1px;
}

.admin-tab:hover {
    color: rgba(255, 255, 255, 0.8);
}

.admin-tab.active {
    color: var(--text-primary);
    border-bottom-color: var(--text-primary);
}

.admin-section {
    margin-top: 48px;
}

.admin-section-title {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 32px;
    letter-spacing: -1px;
    color: rgba(255, 255, 255, 0.95);
}

.admin-form {
    max-width: 680px;
    margin-bottom: 64px;
    padding: 40px;
    background-color: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.admin-form-group {
    margin-bottom: 28px;
}

.admin-form-group:last-child {
    margin-bottom: 0;
}

.admin-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-checkbox {
    width: 22px;
    height: 22px;
    cursor: pointer;
    accent-color: #ffffff;
    margin-top: 2px;
}

.admin-checkbox-label {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-primary);
    cursor: pointer;
    flex: 1;
}

.admin-checkbox-help {
    color: var(--text-secondary);
    font-size: 13px;
    display: block;
    margin-top: 8px;
    margin-left: 38px;
    line-height: 1.5;
    letter-spacing: 0.1px;
}

.admin-delete-btn {
    background-color: rgba(255, 0, 0, 0.15);
    color: #ff6666;
    border: 1px solid rgba(255, 0, 0, 0.3);
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 400;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    letter-spacing: 0.2px;
}

.admin-delete-btn:hover {
    background-color: rgba(255, 0, 0, 0.25);
    border-color: rgba(255, 0, 0, 0.5);
    transform: translateY(-1px);
}

.admin-gallery-card {
    position: relative;
    background-color: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 320px;
}

.admin-gallery-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.admin-gallery-card .gallery-image {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.admin-gallery-card-content {
    padding: 20px;
    background-color: var(--bg-secondary);
}

.admin-gallery-card-title {
    font-weight: 500;
    margin-bottom: 6px;
    font-size: 15px;
    letter-spacing: -0.2px;
}

.admin-gallery-card-description {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.5;
}

.admin-gallery-actions {
    display: flex;
    gap: 12px;
}

.admin-gallery-actions .btn {
    flex: 1;
    padding: 12px;
    font-size: 14px;
}

.admin-empty-state {
    color: var(--text-secondary);
    margin-bottom: 48px;
    font-size: 15px;
    font-weight: 300;
    text-align: center;
    padding: 48px;
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 24px;
}

.admin-table th,
.admin-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.admin-table th {
    font-weight: 400;
    color: var(--text-secondary);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Chat Admin */
.chat-admin-container {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 24px;
    height: calc(100vh - 120px);
}

.conversations-list {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow-y: auto;
    padding: 16px;
}

.conversation-item {
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.conversation-item:hover {
    background-color: var(--bg-tertiary);
}

.conversation-item.active {
    background-color: var(--bg-tertiary);
    border-left: 3px solid var(--text-primary);
}

.conversation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.conversation-name {
    font-weight: 500;
    font-size: 14px;
}

.conversation-time {
    font-size: 12px;
    color: var(--text-secondary);
}

.conversation-preview {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.conversation-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.conversation-status {
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.conversation-status.open {
    background-color: rgba(0, 255, 0, 0.2);
    color: #00ff00;
}

.conversation-status.closed {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--text-secondary);
}

.chat-window {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.chat-window-header {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-window-messages {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chat-window-input {
    padding: 16px 24px;
    border-top: 1px solid var(--border-color);
}

/* Product Selector */
.product-selector {
    margin-bottom: 12px;
    padding: 12px;
    background-color: var(--bg-tertiary);
    border-radius: 8px;
}

.product-selector-item {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 8px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.product-selector-item:hover {
    background-color: var(--bg-secondary);
}

.product-selector-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
}

.product-selector-info {
    flex: 1;
}

.product-selector-name {
    font-size: 14px;
    margin-bottom: 2px;
}

.product-selector-price {
    font-size: 12px;
    color: var(--text-secondary);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 32px;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    /* Navigation */
    .nav-container {
        padding: 0 16px;
    }
    
    .nav-logo {
        height: 56px;
    }
    
    .nav-links {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(40px) saturate(180%);
        -webkit-backdrop-filter: blur(40px) saturate(180%);
        flex-direction: column;
        padding: 24px;
        gap: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 999;
        max-height: calc(100vh - 64px);
        overflow-y: auto;
    }
    
    .nav-links.mobile-open {
        display: flex;
    }
    
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .nav-links a {
        display: block;
        padding: 16px 0;
        font-size: 16px;
        width: 100%;
    }
    
    .nav-links a::after {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
        font-size: 28px;
        padding: 8px;
        cursor: pointer;
        transition: transform 0.3s ease;
    }
    
    .mobile-menu-btn:hover {
        transform: scale(1.1);
    }
    
    /* Hero Section */
    .hero {
        min-height: 70vh;
        height: 70vh;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-content h1 {
        font-size: 42px;
        letter-spacing: -1.5px;
        margin-bottom: 20px;
        line-height: 1.1;
    }
    
    .hero-content p {
        font-size: 18px;
        margin-bottom: 40px;
        letter-spacing: -0.3px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .hero-content .btn {
        padding: 12px 28px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
    
    /* Sections */
    .section {
        padding: 80px 20px;
    }
    
    .section-title {
        font-size: 36px;
        letter-spacing: -1.5px;
        margin-bottom: 50px;
        line-height: 1.1;
    }
    
    .section-title::after {
        width: 60px;
        bottom: -24px;
    }
    
    .about-content {
        padding: 0 8px;
    }
    
    .about-text {
        font-size: 17px;
        line-height: 1.7;
    }
    
    /* Products */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 48px;
    }
    
    .product-card {
        border-radius: 12px;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-info {
        padding: 18px;
    }
    
    .product-name {
        font-size: 18px;
    }
    
    .product-description {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .product-price {
        font-size: 18px;
    }
    
    .products-footer {
        margin-top: 60px;
        padding-top: 60px;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 16px;
        margin-top: 48px;
    }
    
    .gallery-item {
        border-radius: 10px;
    }
    
    .gallery-title {
        font-size: 14px;
    }
    
    .gallery-description {
        font-size: 11px;
    }
    
    /* Category Filter */
    .category-filter {
        gap: 8px;
        margin-bottom: 32px;
        padding: 0 8px;
    }
    
    .category-btn {
        padding: 6px 16px;
        font-size: 13px;
    }
    
    /* Partners */
    .partners-section {
        padding: 60px 16px;
    }
    
    .partners-title {
        font-size: 32px;
        margin-bottom: 32px;
        letter-spacing: -1px;
    }
    
    .partners-grid {
        gap: 16px;
    }
    
    .partner-banner {
        height: 90px;
    }
    
    .partner-card-content {
        padding: 20px 16px;
    }
    
    .partner-logo {
        width: 64px;
        height: 64px;
    }
    
    .partner-verified-badge {
        width: 24px;
        height: 24px;
        border-width: 2px;
    }
    
    .partner-verified-badge svg {
        width: 12px;
        height: 12px;
    }
    
    .partner-name {
        font-size: 17px;
    }
    
    .partner-verified-icon {
        width: 18px;
        height: 18px;
    }
    
    .partner-verified-icon svg {
        width: 10px;
        height: 10px;
    }
    
    .partner-discord-link {
        padding: 6px 14px;
        font-size: 11px;
    }
    
    /* Admin Container */
    .admin-container {
        padding: 32px 20px;
    }
    
    .admin-header {
        font-size: 34px;
    }

    .admin-tabs {
        flex-wrap: wrap;
        gap: 8px;
        padding-bottom: 6px;
        overflow-x: auto;
    }

    .admin-tab {
        padding: 12px 18px;
        font-size: 14px;
        flex: 1 1 auto;
        text-align: center;
    }

    .admin-section {
        margin-top: 32px;
    }

    .admin-section-title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .admin-form {
        max-width: 100%;
        padding: 28px 24px;
        margin-bottom: 40px;
    }

    .admin-checkbox-group {
        flex-direction: column;
        gap: 12px;
    }

    .admin-checkbox {
        margin-top: 0;
    }

    .admin-form-group {
        margin-bottom: 22px;
    }

    .admin-table {
        display: block;
        width: 100%;
        overflow-x: auto;
        border-spacing: 0;
    }

    .admin-table th,
    .admin-table td {
        white-space: nowrap;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    /* Navigation */
    .nav-container {
        padding: 0 12px;
    }
    
    .nav-logo {
        height: 48px;
    }
    
    .nav-links {
        padding: 20px 16px;
    }
    
    .nav-links a {
        font-size: 15px;
        padding: 14px 0;
    }
    
    /* Hero */
    .hero {
        min-height: 60vh;
        height: 60vh;
    }
    
    .hero-content {
        padding: 0 16px;
    }
    
    .hero-content h1 {
        font-size: 36px;
        letter-spacing: -1px;
        margin-bottom: 16px;
        line-height: 1.1;
    }
    
    .hero-content p {
        font-size: 16px;
        margin-bottom: 28px;
        line-height: 1.4;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .hero-content .btn {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
    
    /* Sections */
    .section {
        padding: 60px 16px;
    }
    
    .section-title {
        font-size: 32px;
        letter-spacing: -1px;
        margin-bottom: 40px;
        line-height: 1.2;
    }
    
    .section-title::after {
        width: 50px;
        bottom: -20px;
    }
    
    /* About Section */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-col {
        padding: 20px;
    }
    
    .about-text {
        font-size: 16px;
        line-height: 1.65;
    }
    
    .about-feature {
        margin-bottom: 16px;
    }
    
    .about-tag {
        font-size: 12px;
        padding: 4px 10px;
    }
    
    /* FAQ Section */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .faq-card {
        padding: 16px;
    }
    
    .faq-question {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .faq-answer {
        font-size: 14px;
        line-height: 1.6;
    }
    
    /* Products */
    .products-grid {
        gap: 20px;
        margin-top: 40px;
    }
    
    .product-card {
        max-width: 100%;
    }
    
    .product-image {
        height: 180px;
    }
    
    .product-info {
        padding: 16px;
    }
    
    .product-category {
        font-size: 11px;
        margin-bottom: 8px;
    }
    
    .product-name {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .product-description {
        font-size: 12px;
        line-height: 1.5;
        margin-bottom: 12px;
    }
    
    .product-price {
        font-size: 16px;
    }
    
    .products-footer {
        margin-top: 50px;
        padding-top: 50px;
    }
    
    .products-footer .btn {
        padding: 12px 28px;
        font-size: 14px;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 12px;
        margin-top: 40px;
    }
    
    /* Partners Home Section */
    .partners-home-section {
        padding: 50px 16px;
    }
    
    .partners-home-title {
        font-size: 24px;
        margin-bottom: 24px;
    }
    
    .partners-home-slider {
        padding: 8px 0;
        overflow: hidden;
    }
    
    .partners-home-track {
        gap: 12px;
        justify-content: center;
        padding: 0 4px;
    }
    
    .partners-home-track .partners-home-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .partners-home-card {
        max-width: 240px;
    }
    
    .partners-home-cover {
        height: 120px;
    }
    
    .partners-home-logo-wrapper {
        margin-top: -22px;
    }
    
    .partners-home-logo {
        width: 44px;
        height: 44px;
        padding: 6px;
    }
    
    .partners-home-card-body {
        padding: 12px 14px 16px;
    }
    
    .partners-home-name {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .partners-home-verified-icon {
        width: 14px;
        height: 14px;
    }
    
    .partners-home-verified-icon svg {
        width: 8px;
        height: 8px;
    }
    
    .partners-home-discord-link {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .partners-home-cta {
        margin-top: 24px;
    }
    
    .partners-home-cta .btn {
        min-width: auto;
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    /* Partners */
    .partners-list-container {
        margin-top: 50px;
        padding: 0 12px;
    }
    
    .partner-item-content {
        padding: 18px 20px;
        gap: 16px;
    }
    
    .partner-item-logo-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .partner-item-logo {
        width: 60px;
        height: 60px;
    }
    
    .verified-badge {
        width: 30px;
        height: 30px;
        border-width: 3px;
    }
    
    .verified-badge svg {
        width: 16px;
        height: 16px;
    }
    
    .partner-item-name {
        font-size: 18px;
    }
    
    .partner-item-discord {
        padding: 9px 20px;
        font-size: 13px;
    }
    
    /* Admin Container */
    .admin-container {
        padding: 24px 16px;
    }
    
    .admin-header {
        font-size: 30px;
    }

    .admin-tabs {
        gap: 6px;
    }

    .admin-tab {
        padding: 10px 14px;
        font-size: 13px;
        flex: 1 1 45%;
    }

    .admin-form {
        padding: 22px 18px;
    }

    .admin-section-title {
        font-size: 24px;
    }

    .admin-message {
        font-size: 13px;
    }

    .admin-checkbox-label {
        font-size: 14px;
    }

    .admin-table th,
    .admin-table td {
        padding: 10px;
    }
    
    /* Category Filter */
    .category-filter {
        gap: 6px;
        margin-bottom: 28px;
        padding: 0 4px;
    }
    
    .category-btn {
        padding: 5px 14px;
        font-size: 12px;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .hero {
        min-height: 55vh;
        height: 55vh;
    }
    
    .hero-content {
        padding: 0 12px;
    }
    
    .hero-content h1 {
        font-size: 32px;
        letter-spacing: -0.5px;
        margin-bottom: 12px;
    }
    
    .hero-content p {
        font-size: 15px;
        margin-bottom: 24px;
    }
    
    .hero-actions {
        max-width: 100%;
    }
    
    .hero-content .btn {
        padding: 11px 20px;
        font-size: 13px;
    }
    
    .section {
        padding: 50px 12px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 32px;
    }
    
    .section-title::after {
        width: 40px;
        bottom: -16px;
    }
    
    .about-col {
        padding: 16px;
    }
    
    .about-text {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .faq-card {
        padding: 14px;
    }
    
    .faq-question {
        font-size: 15px;
    }
    
    .faq-answer {
        font-size: 13px;
    }
    
    .product-image {
        height: 160px;
    }
    
    .product-info {
        padding: 14px;
    }
    
    .product-name {
        font-size: 15px;
    }
    
    .product-description {
        font-size: 11px;
    }
    
    .product-price {
        font-size: 15px;
    }
    
    .partners-home-section {
        padding: 40px 12px;
    }
    
    .partners-home-title {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .partners-home-track .partners-home-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .partners-home-card {
        max-width: 220px;
    }
    
    .partners-home-cover {
        height: 100px;
    }
    
    .partners-home-logo {
        width: 40px;
        height: 40px;
    }
    
    .partners-home-card-body {
        padding: 10px 12px 14px;
    }
    
    .partners-home-name {
        font-size: 13px;
    }
    
    .partners-home-discord-link {
        padding: 5px 10px;
        font-size: 10px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 10px;
    }
}

/* Landscape Orientation on Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        height: 100vh;
    }
    
    .hero-content h1 {
        font-size: 38px;
        margin-bottom: 16px;
    }
    
    .hero-content p {
        font-size: 17px;
        margin-bottom: 32px;
    }
    
    .section {
        padding: 60px 20px;
    }
    
    .section-title {
        font-size: 34px;
        margin-bottom: 40px;
    }
}

/* Loading States */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--text-secondary);
    border-top-color: var(--text-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Product Detail View */
.product-detail-container {
    max-width: 1200px;
    margin: 0 auto;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 32px;
}

.product-detail-images {
    position: relative;
}

.product-detail-main-image {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    margin-bottom: 16px;
}

.product-detail-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.product-thumbnail {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.product-thumbnail:hover {
    border-color: var(--hover-border);
    transform: scale(1.05);
}

.product-detail-info h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.product-detail-price {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 32px;
}

.product-detail-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* Submission Form Container */
.submission-form-container {
    max-width: 600px;
    margin: 0 auto 80px;
    padding: 40px;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
}

@media (max-width: 768px) {
    .submission-form-container {
        padding: 32px 24px;
        margin-bottom: 60px;
    }
}

@media (max-width: 480px) {
    .submission-form-container {
        padding: 28px 20px;
        margin-bottom: 50px;
    }
}

/* Form Styles */
.form-group {
    margin-bottom: 28px;
}

.form-group:last-of-type {
    margin-bottom: 0;
}

.form-label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.2px;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 14px 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 15px;
    font-family: inherit;
    font-weight: 300;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.25);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.05),
                0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='rgba(255,255,255,0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 44px;
}

.form-select option {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 48px;
    cursor: pointer;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.lightbox-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Toast Notifications */
.toast {
    position: fixed;
    top: 80px;
    right: 24px;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 16px 24px;
    border-radius: 8px;
    z-index: 2000;
    animation: slideIn 0.3s ease-out;
    max-width: 400px;
}

@media (max-width: 768px) {
    .toast {
        right: 16px;
        left: 16px;
        max-width: none;
        top: 70px;
    }
    
    /* Product Detail View */
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-top: 24px;
    }
    
    .product-detail-info h1 {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .product-detail-price {
        font-size: 24px;
        margin-bottom: 24px;
    }
    
    .product-detail-description {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 24px;
    }
    
    .product-detail-thumbnails {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        font-size: 36px;
        width: 50px;
        height: 50px;
    }
    
    .lightbox-image {
        max-width: 95%;
        max-height: 85%;
    }
}

@media (max-width: 480px) {
    .product-detail-info h1 {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .product-detail-price {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .product-detail-description {
        font-size: 14px;
    }
    
    .product-detail-thumbnails {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .lightbox-close {
        top: 8px;
        right: 8px;
        font-size: 32px;
        width: 44px;
        height: 44px;
    }
}

/* Partners Page */
.partners-page-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 120px 40px 100px;
    min-height: calc(100vh - 64px);
}

.partners-page-header {
    margin-bottom: 56px;
}

.partners-page-title {
    font-size: 40px;
    font-weight: 600;
    letter-spacing: -1.2px;
    color: rgba(255, 255, 255, 0.98);
    margin: 0;
    line-height: 1.2;
}

.partners-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}

@media (min-width: 1024px) {
    .partners-page-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1440px) {
    .partners-page-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.partners-page-card {
    background: linear-gradient(145deg, #2a2a2a 0%, #252525 100%);
    border-radius: 16px;
    overflow: visible;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3), 
                0 0 0 1px rgba(255, 255, 255, 0.05);
}

.partners-page-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.08);
}

.partners-page-card-inner {
    position: relative;
}

.partners-page-cover {
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 16px 16px 0 0;
}

.partners-page-cover-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.partners-page-card:hover .partners-page-cover-img {
    transform: scale(1.08);
}

.partners-page-logo-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    margin: -36px auto 0;
    width: fit-content;
    z-index: 2;
}

.partners-page-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    display: block;
    border-radius: 16px;
    background: linear-gradient(145deg, #2a2a2a 0%, #252525 100%);
    padding: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5),
                0 0 0 3px rgba(255, 255, 255, 0.08);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.partners-page-card:hover .partners-page-logo {
    transform: scale(1.05);
}

.partners-page-verified-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #1DA1F2 0%, #0d8bd9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #252525;
    box-shadow: 0 2px 8px rgba(29, 161, 242, 0.6);
    z-index: 3;
}

.partners-page-verified-badge svg {
    width: 13px;
    height: 13px;
}

.partners-page-card-body {
    padding: 20px 24px 24px;
    text-align: center;
}

.partners-page-name {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.98);
    line-height: 1.3;
}

.partners-page-verified-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #1DA1F2 0%, #0d8bd9 100%);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(29, 161, 242, 0.4);
    color: white;
    flex-shrink: 0;
}

.partners-page-verified-icon svg {
    width: 12px;
    height: 12px;
}

.partners-page-discord-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.2) 0%, rgba(88, 101, 242, 0.15) 100%);
    color: #7289da;
    border: 1px solid rgba(88, 101, 242, 0.3);
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    margin-top: 4px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    letter-spacing: -0.1px;
}

.partners-page-discord-link svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.partners-page-discord-link:hover {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.3) 0%, rgba(88, 101, 242, 0.25) 100%);
    border-color: rgba(88, 101, 242, 0.5);
    color: #8ea1ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.3);
}

.partners-page-empty {
    text-align: center;
    padding: 120px 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    font-weight: 300;
}

@media (max-width: 1024px) {
    .partners-page-container {
        padding: 100px 32px 80px;
    }
    
    .partners-page-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .partners-page-container {
        padding: 90px 24px 60px;
    }
    
    .partners-page-header {
        margin-bottom: 40px;
    }
    
    .partners-page-title {
        font-size: 32px;
        letter-spacing: -0.8px;
    }
    
    .partners-page-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 20px;
    }
    
    .partners-page-cover {
        border-radius: 14px 14px 0 0;
    }
    
    .partners-page-logo-wrapper {
        margin-top: -32px;
    }
    
    .partners-page-logo {
        width: 64px;
        height: 64px;
        padding: 8px;
    }
    
    .partners-page-verified-badge {
        width: 22px;
        height: 22px;
        border-width: 2.5px;
    }
    
    .partners-page-verified-badge svg {
        width: 12px;
        height: 12px;
    }
    
    .partners-page-card-body {
        padding: 18px 20px 20px;
    }
    
    .partners-page-name {
        font-size: 17px;
    }
    
    .partners-page-verified-icon {
        width: 18px;
        height: 18px;
    }
    
    .partners-page-verified-icon svg {
        width: 11px;
        height: 11px;
    }
    
    .partners-page-discord-link {
        padding: 9px 18px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .partners-page-container {
        padding: 80px 16px 50px;
    }
    
    .partners-page-header {
        margin-bottom: 32px;
    }
    
    .partners-page-title {
        font-size: 28px;
        letter-spacing: -0.7px;
    }
    
    .partners-page-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .partners-page-logo-wrapper {
        margin-top: -28px;
    }
    
    .partners-page-logo {
        width: 56px;
        height: 56px;
        padding: 7px;
        border-radius: 14px;
    }
    
    .partners-page-verified-badge {
        width: 20px;
        height: 20px;
        border-width: 2px;
    }
    
    .partners-page-verified-badge svg {
        width: 11px;
        height: 11px;
    }
    
    .partners-page-card-body {
        padding: 16px 18px 18px;
    }
    
    .partners-page-name {
        font-size: 16px;
        margin-bottom: 14px;
    }
    
    .partners-page-verified-icon {
        width: 17px;
        height: 17px;
    }
    
    .partners-page-verified-icon svg {
        width: 10px;
        height: 10px;
    }
    
    .partners-page-discord-link {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .partners-page-discord-link svg {
        width: 14px;
        height: 14px;
    }
}

/* Verified Partners Home Section */
.partners-home-section {
    padding: 60px 32px 80px;
    background-color: var(--bg-primary);
    position: relative;
}

.partners-home-container {
    max-width: 1100px;
    margin: 0 auto;
}

.partners-home-title {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -1px;
    color: rgba(255, 255, 255, 0.98);
    margin-bottom: 24px;
    text-align: center;
}
.partners-home-cta {
    display: flex;
    justify-content: center;
    margin: 16px 0 6px;
}
.partners-home-cta .btn {
    min-width: 220px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.18) 0%, rgba(88, 101, 242, 0.12) 100%);
    border: 1px solid rgba(88, 101, 242, 0.4);
    color: #8ea1ff;
    font-weight: 600;
    text-align: center;
}
.partners-home-cta .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(88, 101, 242, 0.35);
}

.partners-home-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    justify-items: center;
}

/* Slider layout for home partners */
.partners-home-slider {
    overflow: hidden;
    position: relative;
    padding: 8px 4px;
}

.partners-home-track {
    display: flex;
    gap: 16px;
    transition: transform 0.5s ease;
    will-change: transform;
}

.partners-home-track .partners-home-card {
    flex: 0 0 260px;
}

.partners-home-card {
    background: linear-gradient(145deg, #2a2a2a 0%, #252525 100%);
    border-radius: 14px;
    overflow: visible;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25), 
                0 0 0 1px rgba(255, 255, 255, 0.04);
    width: 100%;
    max-width: 280px;
}

.partners-home-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.07);
}

.partners-home-card-inner {
    position: relative;
}

.partners-home-cover {
    width: 100%;
    height: 140px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 14px 14px 0 0;
}

.partners-home-cover-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.partners-home-card:hover .partners-home-cover-img {
    transform: scale(1.06);
}

.partners-home-logo-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    margin: -26px auto 0;
    width: fit-content;
    z-index: 2;
}

.partners-home-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
    display: block;
    border-radius: 12px;
    background: linear-gradient(145deg, #2a2a2a 0%, #252525 100%);
    padding: 7px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4),
                0 0 0 2.5px rgba(255, 255, 255, 0.06);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.partners-home-card:hover .partners-home-logo {
    transform: scale(1.05);
}

.partners-home-verified-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #1DA1F2 0%, #0d8bd9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #252525;
    box-shadow: 0 2px 6px rgba(29, 161, 242, 0.5);
    z-index: 3;
}

.partners-home-verified-badge svg {
    width: 10px;
    height: 10px;
}

.partners-home-card-body {
    padding: 16px 20px 20px;
    text-align: center;
}

.partners-home-name {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -0.2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.3;
}

.partners-home-verified-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    background: linear-gradient(135deg, #1DA1F2 0%, #0d8bd9 100%);
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(29, 161, 242, 0.3);
    color: white;
    flex-shrink: 0;
}

.partners-home-verified-icon svg {
    width: 9px;
    height: 9px;
}

.partners-home-discord-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 7px 14px;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.18) 0%, rgba(88, 101, 242, 0.13) 100%);
    color: #7289da;
    border: 1px solid rgba(88, 101, 242, 0.25);
    border-radius: 8px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    margin-top: 2px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.partners-home-discord-link svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.partners-home-discord-link:hover {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.28) 0%, rgba(88, 101, 242, 0.23) 100%);
    border-color: rgba(88, 101, 242, 0.45);
    color: #8ea1ff;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(88, 101, 242, 0.25);
}

@media (max-width: 1024px) {
    .partners-home-section {
        padding: 80px 28px;
    }
    
    .partners-home-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .partners-home-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .partners-home-section {
        padding: 70px 24px;
    }
    
    .partners-home-title {
        font-size: 28px;
        margin-bottom: 36px;
    }
    
    .partners-home-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 18px;
    }
    
    .partners-home-slider {
        padding: 8px 2px;
    }
    
    .partners-home-track {
        gap: 14px;
        justify-content: center;
    }
    
    .partners-home-track .partners-home-card {
        flex: 0 0 85%;
        max-width: 360px;
    }
    
    .partners-home-logo-wrapper {
        margin-top: -24px;
    }
    
    .partners-home-logo {
        width: 50px;
        height: 50px;
        padding: 7px;
    }
    
    .partners-home-verified-badge {
        width: 18px;
        height: 18px;
    }
    
    .partners-home-verified-badge svg {
        width: 10px;
        height: 10px;
    }
    
    .partners-home-card-body {
        padding: 14px 18px 18px;
    }
    
    .partners-home-name {
        font-size: 15px;
    }
    
    .partners-home-verified-icon {
        width: 15px;
        height: 15px;
    }
    
    .partners-home-verified-icon svg {
        width: 9px;
        height: 9px;
    }
    
    .partners-home-discord-link {
        padding: 7px 14px;
        font-size: 11px;
    }
    
    .partners-home-cta .btn {
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    .partners-home-section {
        padding: 60px 16px;
    }
    
    .partners-home-title {
        font-size: 24px;
        margin-bottom: 28px;
    }
    
    .partners-home-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .partners-home-logo {
        width: 48px;
        height: 48px;
    }
    
    .partners-home-card-body {
        padding: 12px 16px 16px;
    }
    
    .partners-home-name {
        font-size: 14px;
    }
    
    .partners-home-discord-link {
        padding: 6px 12px;
        font-size: 11px;
    }
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

