/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #3b82f6;
    --primary-dark: #2563eb;
    --accent-color: #8b5cf6;
    --dark-bg: #0f172a;
    --card-bg: #1e293b;
    --text-light: #f8fafc;
    --text-gray: #cbd5e1;
    --border-color: #334155;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Animated Background */
.background-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    background-size: 200% 200%;
    animation: gradientFlow 25s ease infinite;
}

.background-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.12) 0%, transparent 50%);
    animation: float 35s ease-in-out infinite;
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(15px, -15px) scale(1.05); }
    66% { transform: translate(-10px, 10px) scale(0.95); }
}

/* Three.js Container */
#three-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

/* Floating Particles */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.8), transparent);
    border-radius: 50%;
    animation: particleFloat 15s infinite ease-in-out;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 18s; }
.particle:nth-child(2) { left: 20%; top: 80%; animation-delay: 3s; animation-duration: 22s; }
.particle:nth-child(3) { left: 30%; top: 40%; animation-delay: 6s; animation-duration: 25s; }
.particle:nth-child(4) { left: 50%; top: 60%; animation-delay: 2s; animation-duration: 20s; }
.particle:nth-child(5) { left: 70%; top: 30%; animation-delay: 5s; animation-duration: 23s; }
.particle:nth-child(6) { left: 80%; top: 70%; animation-delay: 8s; animation-duration: 19s; }
.particle:nth-child(7) { left: 90%; top: 50%; animation-delay: 4s; animation-duration: 24s; }
.particle:nth-child(8) { left: 60%; top: 10%; animation-delay: 7s; animation-duration: 26s; }

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    50% {
        transform: translate(30px, -80px) scale(1.3);
        opacity: 0.5;
    }
    90% {
        opacity: 0.6;
    }
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 55px;
    width: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.3));
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 25px rgba(59, 130, 246, 0.5));
}

.contact-links {
    display: flex;
    gap: 0.75rem;
}

.contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: var(--text-gray);
    transition: all 0.3s ease;
    border-radius: 10px;
    border: 1px solid transparent;
}

.contact-link:hover {
    color: var(--primary-color);
    background-color: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 1000px;
}

.main-title {
    font-weight: 900;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    line-height: 1;
    text-transform: uppercase;
    position: relative;
    white-space: nowrap;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

/* ORIGINAL BLUE GRADIENT (ACTIVE) */
.title-letter {
    display: inline-block;
    position: relative;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: linear-gradient(
        145deg,
        #e0f2fe 0%,
        #bae6fd 25%,
        #7dd3fc 50%,
        #38bdf8 75%,
        #0ea5e9 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 8px rgba(59, 130, 246, 0.4));
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.title-letter::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: linear-gradient(
        145deg,
        rgba(14, 165, 233, 0.3),
        rgba(59, 130, 246, 0.2)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(12px);
    opacity: 0.6;
}

/* OPTION 2: NEON PURPLE & PINK CYBERPUNK */
/*
.title-letter {
    display: inline-block;
    position: relative;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: linear-gradient(
        145deg,
        #ff00ff 0%,
        #ff1493 25%,
        #ffffff 50%,
        #ff1493 75%,
        #ff00ff 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(255, 0, 255, 0.8))
            drop-shadow(0 0 30px rgba(255, 20, 147, 0.6));
    text-shadow: 0 0 40px rgba(255, 0, 255, 0.5);
}

.title-letter::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: linear-gradient(145deg, rgba(255, 0, 255, 0.5), rgba(255, 20, 147, 0.4));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(25px);
    opacity: 0.9;
}
*/

/* OPTION 3: HOLOGRAPHIC RAINBOW */
/*
.title-letter {
    display: inline-block;
    position: relative;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: linear-gradient(
        90deg,
        #ff0080 0%,
        #ff8c00 20%,
        #ffd700 40%,
        #00ff00 60%,
        #ff00ff 80%,
        #ff0080 100%
    );
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
    animation: rainbow 6s linear infinite;
}

@keyframes rainbow {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

.title-letter::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.4), rgba(255, 215, 0, 0.3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(30px);
    opacity: 0.7;
}
*/

/* OPTION 4: CINEMATIC GOLD & WHITE */
/*
.title-letter {
    display: inline-block;
    position: relative;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #ffd700 30%,
        #ffed4e 50%,
        #ffa500 70%,
        #ff8c00 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 8px 16px rgba(255, 215, 0, 0.6))
            drop-shadow(0 0 40px rgba(255, 140, 0, 0.4));
}

.title-letter::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.5), rgba(255, 140, 0, 0.4));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(35px);
    opacity: 0.8;
}
*/

/* OPTION 5: EMERALD & SILVER TECH */
/*
.title-letter {
    display: inline-block;
    position: relative;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: linear-gradient(
        145deg,
        #ffffff 0%,
        #00ff88 25%,
        #00ffcc 50%,
        #00ff88 75%,
        #ffffff 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.7))
            drop-shadow(0 4px 12px rgba(255, 255, 255, 0.4));
}

.title-letter::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: linear-gradient(145deg, rgba(0, 255, 136, 0.4), rgba(0, 255, 204, 0.3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(25px);
    opacity: 0.8;
}
*/

.title-letter-large {
    font-size: clamp(4.5rem, 14vw, 8.5rem);
    font-weight: 900;
    letter-spacing: -0.03em;
}

.title-letter-small {
    font-size: clamp(3.6rem, 11vw, 6.8rem);
    font-weight: 800;
    margin: 0 0.05em;
    letter-spacing: -0.02em;
}



.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 2rem);
    color: var(--text-gray);
    font-weight: 400;
    line-height: 1.5;
    max-width: 900px;
    margin: 0 auto 2.5rem;
    white-space: nowrap;
}

.hero-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.hero-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 200px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-cta-button:hover {
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s ease-in-out infinite;
}

.scroll-arrow {
    width: 28px;
    height: 28px;
    border-left: 3px solid var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
    transform: rotate(-45deg);
    opacity: 0.9;
}

@keyframes bounce {
    0%, 100% { 
        transform: translateX(-50%) translateY(0);
        opacity: 0.9;
    }
    50% { 
        transform: translateX(-50%) translateY(12px);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--text-light);
    letter-spacing: -0.02em;
}

/* Custom Orders & Featured Products Section */
.custom-featured-section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.featured-products-wrapper {
    margin-bottom: 4rem;
}

.featured-products-wrapper .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.custom-order-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.custom-order-wrapper .section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.custom-order-card {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 0;
    border: 2px solid var(--primary-color);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-order-card:hover {
    box-shadow: 0 25px 60px rgba(59, 130, 246, 0.3);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.custom-order-card:hover .card-glow {
    opacity: 1;
    animation: rotateGlow 4s linear infinite;
}

@keyframes rotateGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.card-content {
    position: relative;
    z-index: 1;
    padding: 3.5rem;
}

.custom-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.custom-order-card:hover .custom-icon {
    transform: rotateY(360deg);
    border-color: var(--primary-color);
}

.card-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.card-content p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

.custom-note {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-top: -0.5rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.custom-order-button {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.custom-order-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.5);
}

.custom-order-button .arrow {
    transition: transform 0.3s ease;
    font-size: 1.25rem;
}

.custom-order-button:hover .arrow {
    transform: translateX(5px);
}

/* Featured Products Section */
.featured-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.product-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.product-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.2);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background: var(--dark-bg);
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.02);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.9), rgba(139, 92, 246, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.view-product {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.product-card:hover .view-product {
    transform: translateY(0);
}

.product-info {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.product-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
    min-height: 4em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.product-card:hover .product-title {
    color: var(--primary-color);
}

/* Marketplaces Section */
.marketplaces {
    padding: 4rem 2rem 5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.marketplaces .section-description {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.95rem;
    max-width: 600px;
    margin: 0.5rem auto 0;
    line-height: 1.5;
}

.marketplace-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
    align-items: stretch;
}

.marketplace-card {
    position: relative;
    background: var(--card-bg);
    border-radius: 12px;
    padding: 1.5rem 1.25rem;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    min-height: 280px;
}



/* Card Background Effects */
.card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.card-pattern {
    display: none;
}

.card-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.08), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.marketplace-card:hover .card-gradient {
    opacity: 1;
}

/* Animated Glow Border */
.card-glow-border {
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color), var(--primary-color));
    background-size: 200% 200%;
    border-radius: 12px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
    animation: borderGlow 3s ease infinite;
}

@keyframes borderGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.marketplace-card:hover .card-glow-border {
    opacity: 0.7;
}

/* Shine Effect */
.card-shine-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.08) 50%,
        transparent 70%
    );
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.8s ease;
    pointer-events: none;
}

.marketplace-card:hover .card-shine-effect {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

/* Card Content */
.marketplace-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    height: 100%;
    gap: 0.75rem;
    padding-top: 0.5rem;
}

/* Ensure all elements are visible by default */
.marketplace-card,
.store-logo,
.store-description,
.marketplace-cta {
    opacity: 1;
    visibility: visible;
}

/* Store Logo - Force white on all modes */
.store-logo {
    width: 140px;
    height: 50px;
    object-fit: contain;
    margin: 0;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1) opacity(0.9) !important;
    -webkit-filter: brightness(0) invert(1) opacity(0.9) !important;
    background: transparent !important;
    mix-blend-mode: normal !important;
    isolation: isolate;
}

.marketplace-card:hover .store-logo {
    filter: brightness(0) invert(1) opacity(1) drop-shadow(0 0 8px rgba(59, 130, 246, 0.6)) !important;
    -webkit-filter: brightness(0) invert(1) opacity(1) drop-shadow(0 0 8px rgba(59, 130, 246, 0.6)) !important;
}

/* Prevent Samsung dark mode from inverting logos */
.marketplace-icon-large,
.store-logo {
    -webkit-user-modify: read-only !important;
    color-scheme: only light !important;
}

/* Vinted text logo styling */
.vinted-text-logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light) !important;
    opacity: 0.9;
    filter: none !important;
    letter-spacing: -0.02em;
}

.marketplace-card:hover .vinted-text-logo {
    opacity: 1;
    color: var(--text-light) !important;
    text-shadow: 0 0 8px rgba(59, 130, 246, 0.6);
    filter: none !important;
}

/* Logo wrapper to isolate from dark mode */
.logo-wrapper {
    display: inline-block;
    background: transparent !important;
    color-scheme: only light !important;
    isolation: isolate;
    -webkit-user-modify: read-only !important;
}

/* Force white logos on all browsers and dark modes */
.store-logo,
.store-logo img {
    background-color: transparent !important;
    color: white !important;
}

/* Store Description */
.store-description {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
    max-width: 90%;
}

/* Store List */
.store-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0 0;
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.8;
    flex-grow: 1;
    min-height: 90px;
}

.store-list li {
    position: relative;
    padding-left: 1.25rem;
}

.store-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* CTA Button */
.marketplace-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 10px;
    transition: all 0.3s ease;
    margin-top: auto;
    width: 100%;
    max-width: 200px;
}

.marketplace-card:hover .marketplace-cta {
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

.cta-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
}

/* Store-Specific Accent Colors */
.etsy-card:hover .card-glow-border {
    background: linear-gradient(135deg, #F56040, #FF8C42, #F56040);
    background-size: 200% 200%;
}

.ebay-card:hover .card-glow-border {
    background: linear-gradient(135deg, #E53238, #0064D2, #E53238);
    background-size: 200% 200%;
}

.vinted-card:hover .card-glow-border {
    background: linear-gradient(135deg, #09B1BA, #1CB5E0, #09B1BA);
    background-size: 200% 200%;
}

/* Footer */
footer {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(15, 23, 42, 0.5);
    border-top: 1px solid var(--border-color);
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 1.5rem;
    }
    
    .logo {
        height: 45px;
    }
    
    .hero {
        min-height: 90vh;
        padding: 1rem;
    }
    
    .main-title {
        margin-bottom: 1.5rem;
    }
    
    .title-letter-large {
        font-size: clamp(2.5rem, 12vw, 4.5rem) !important;
    }
    
    .title-letter-small {
        font-size: clamp(2rem, 9.5vw, 3.6rem) !important;
    }
    
    .hero-subtitle {
        white-space: normal;
        max-width: 100%;
        margin-bottom: 2rem;
        font-size: clamp(1rem, 4vw, 1.25rem);
        padding: 0 0.5rem;
    }
    
    .hero-cta-buttons {
        gap: 1rem;
        margin-bottom: 3rem;
        flex-direction: column;
        width: 100%;
        padding: 0 1rem;
    }
    
    .hero-cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
    }
    
    .scroll-indicator {
        bottom: 0.25rem;
    }
    
    .custom-featured-section {
        padding: 3rem 1.5rem;
    }
    
    .featured-products-wrapper {
        margin-bottom: 3rem;
    }
    
    .card-content {
        padding: 2.5rem 2rem;
    }
    
    .card-content h3 {
        font-size: 1.75rem;
    }
    
    .custom-icon {
        width: 60px;
        height: 60px;
    }
    
    .featured-products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .marketplaces {
        padding: 3rem 1.5rem 4rem;
    }
    
    .marketplaces .section-description {
        font-size: 0.95rem;
    }
    
    .marketplace-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2.5rem;
    }
    
    .marketplace-card {
        padding: 1.5rem 1.25rem;
    }
    
    .marketplace-icon-large {
        width: 44px;
        height: 44px;
    }
    
    .marketplace-icon-large svg {
        width: 24px;
        height: 24px;
    }
    
    .store-name {
        font-size: 1.25rem;
    }
    
    .store-description {
        font-size: 0.8rem;
    }
    
    .particles-container {
        display: none;
    }
}

/* Dark Mode Fix for Logos */
@media (prefers-color-scheme: dark) {
    .store-logo {
        filter: brightness(0) invert(1) opacity(0.9) !important;
        -webkit-filter: brightness(0) invert(1) opacity(0.9) !important;
    }
    
    .marketplace-card:hover .store-logo {
        filter: brightness(0) invert(1) opacity(1) drop-shadow(0 0 8px rgba(59, 130, 246, 0.6)) !important;
        -webkit-filter: brightness(0) invert(1) opacity(1) drop-shadow(0 0 8px rgba(59, 130, 246, 0.6)) !important;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Styles */
a:focus,
button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
}
