/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #030014;
    color: #ffffff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: rgba(217, 70, 239, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(217, 70, 239, 0.5);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(3, 0, 20, 0.8);
    backdrop-filter: blur(24px);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.05em;
    background: linear-gradient(to right, #d946ef, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn svg {
    display: block;
}

.cart-btn-mobile {
    position: relative;
    padding: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-btn-mobile:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.cart-btn-mobile.active {
    background: linear-gradient(to right, #d946ef, #8b5cf6);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #94a3b8;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link svg {
    display: none;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
}

.cart-btn {
    position: relative;
    padding: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s;
}

.cart-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(12deg);
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 24px;
    height: 24px;
    background: linear-gradient(to right, #d946ef, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Main Content */
.main-content {
    padding-top: 80px;
    min-height: 100vh;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 6rem 3rem;
}

.container-small {
    max-width: 960px;
    margin: 0 auto;
    padding: 6rem 3rem;
}

/* Hero Section */
.hero-section {
    text-align: center;
    margin-bottom: 4rem;
}

/* Profile Section */
.profile-section {
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.profile-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
}

.profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #d946ef;
    box-shadow: 0 0 30px rgba(217, 70, 239, 0.3);
}

.profile-info {
    flex: 1;
    text-align: left;
}

.profile-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: white;
}

.profile-bio {
    font-size: 1rem;
    color: #cbd5e1;
    margin-bottom: 1rem;
}

.profile-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
}

.stat-label {
    font-size: 0.875rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.filter-btn {
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.filter-btn.active {
    background: linear-gradient(to right, #d946ef, #8b5cf6);
    border-color: transparent;
    color: white;
    box-shadow: 0 0 20px rgba(217, 70, 239, 0.3);
}

.hero-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 5rem;
    line-height: 0.9;
    letter-spacing: -0.05em;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #d946ef, #8b5cf6, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #cbd5e1;
    max-width: 48rem;
    margin: 0 auto;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

/* Content Card */
.content-card {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s;
}

.content-card:hover {
    border-color: rgba(217, 70, 239, 0.5);
    box-shadow: 0 0 30px rgba(217, 70, 239, 0.15);
}

.content-image-container {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.content-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.7s;
}

.content-card:hover .content-image {
    transform: scale(1.1);
}

.content-image.blurred {
    filter: blur(40px) brightness(0.5);
    transform: scale(1.05);
}

.content-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 10;
    transition: all 0.7s;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(16px);
}

.content-overlay.preview-active {
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(0);
    opacity: 0.9;
}

.content-overlay.preview-ended {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(48px);
}

.lock-icon, .eye-icon {
    margin-bottom: 1rem;
    width: 48px;
    height: 48px;
    color: #d946ef;
}

.eye-icon {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.purchased-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: linear-gradient(to right, #10b981, #059669);
    font-size: 0.75rem;
    font-weight: 700;
}

.content-info {
    padding: 1.5rem;
}

.content-type {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.content-type svg {
    color: #d946ef;
    width: 18px;
    height: 18px;
}

.content-type-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #94a3b8;
}

.content-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

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

.content-price {
    font-size: 1.5rem;
    font-weight: 700;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    background: linear-gradient(to right, #d946ef, #8b5cf6);
    color: white;
    font-weight: 700;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
    transform: scale(1.05);
}

.btn-primary:active {
    transform: scale(0.95);
}

.btn-primary:disabled {
    background: rgba(255, 255, 255, 0.1);
    color: #64748b;
    cursor: not-allowed;
    box-shadow: none;
}

.btn-primary:disabled:hover {
    transform: none;
}

/* Page Title */
.page-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    letter-spacing: -0.02em;
    color: white;
    margin-bottom: 3rem;
}

.page-subtitle {
    font-size: 1.125rem;
    color: #cbd5e1;
}

/* Cart Items */
.cart-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(24px);
    margin-bottom: 1.5rem;
}

.cart-item-image {
    width: 96px;
    height: 128px;
    object-fit: cover;
    border-radius: 0.5rem;
}

.cart-item-info {
    flex: 1;
}

.cart-item-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.cart-item-type {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #94a3b8;
}

.cart-item-actions {
    text-align: right;
}

.cart-item-price {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.btn-remove {
    padding: 0.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #ef4444;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-remove:hover {
    background: rgba(239, 68, 68, 0.2);
}

/* Cart Summary */
.cart-summary {
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(24px);
    padding: 2rem;
}

.cart-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-total-label {
    font-size: 1.25rem;
    font-weight: 700;
}

.cart-total-amount {
    font-size: 2rem;
    font-weight: 700;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 0;
}

.empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: #475569;
}

.empty-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.empty-text {
    color: #94a3b8;
    margin-bottom: 2rem;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.contact-card {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    color: white;
    transition: all 0.5s;
}

.contact-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.contact-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
}

.bg-blue {
    background: linear-gradient(to right, #3b82f6, #2563eb);
}

.bg-green {
    background: linear-gradient(to right, #10b981, #059669);
}

.bg-orange {
    background: linear-gradient(to right, #f97316, #ea580c);
}

.contact-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.contact-username {
    color: #94a3b8;
    font-family: monospace;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.contact-cta {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0;
    transition: opacity 0.3s;
}

.contact-card:hover .contact-cta {
    opacity: 1;
}

/* Info Box */
.info-box {
    display: inline-block;
    padding: 2rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(24px);
}

.info-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.info-list {
    list-style: none;
    text-align: left;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #cbd5e1;
    margin-bottom: 0.75rem;
}

/* Toast */
.toast {
    position: fixed;
    top: 100px;
    right: 2rem;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    color: #1e293b;
    font-weight: 500;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transform: translateX(400px);
    transition: transform 0.3s;
    z-index: 1000;
}

.toast.show {
    transform: translateX(0);
}

.toast.success {
    background: #10b981;
    color: white;
}

.toast.error {
    background: #ef4444;
    color: white;
}

/* Utilities */
.text-center {
    text-align: center;
}

.mb-large {
    margin-bottom: 4rem;
}

.mt-large {
    margin-top: 4rem;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    padding: 1.5rem;
    border-radius: 1rem;
    background: rgba(217, 70, 239, 0.05);
    border: 1px solid rgba(217, 70, 239, 0.2);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #d946ef;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Footer */
.footer {
    margin-top: 4rem;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.3);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-copyright {
    color: #94a3b8;
    font-size: 0.875rem;
}

.footer-link {
    color: #d946ef;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #8b5cf6;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(3, 0, 20, 0.98);
        backdrop-filter: blur(24px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateX(-100%);
        transition: transform 0.3s;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 40;
    }
    
    .nav-links.active {
        transform: translateX(0);
    }
    
    .nav-link {
        width: 100%;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-link span {
        display: inline;
    }
    
    .container,
    .container-small {
        padding: 4rem 1.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .profile-container {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .profile-pic {
        width: 100px;
        height: 100px;
    }
    
    .profile-info {
        text-align: center;
    }
    
    .profile-name {
        font-size: 1.5rem;
    }
    
    .profile-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.1rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .filter-buttons {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .filter-btn {
        padding: 0.625rem 1.5rem;
        font-size: 0.75rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-item {
        flex-direction: column;
        text-align: center;
    }
    
    .cart-item-actions {
        text-align: center;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 1.5rem;
    }
    
    .footer-column {
        align-items: center;
    }
}
