/* ===========================================
   MARKET DROPS - Main Stylesheet
   =========================================== */

:root {
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --bg-card: #1a1a1a;
    --accent: #ff6b35;
    --accent-hover: #ff8555;
    --accent-dark: #e55a25;
    --accent-secondary: #ff9f1c;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #666666;
    --border-color: #2a2a2a;
    --success: #4ade80;
    --danger: #ef4444;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: rgba(5, 5, 5, 0.9);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo span {
    color: var(--accent);
}

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

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    padding: 80px 20px;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.countdown-container {
    margin-bottom: 40px;
}

.countdown-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.countdown-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 16px;
    padding: 20px 25px;
    min-width: 90px;
}

.countdown-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.countdown-unit {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.cta-button {
    display: inline-block;
    background: var(--accent);
    color: var(--text-primary);
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 40px;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-top: -30px;
    margin-bottom: 40px;
}

.dark-section {
    background-color: var(--bg-darker);
}

/* Drop Cards */
.drop-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.2s;
}

.drop-card:hover {
    transform: translateY(-4px);
}

.drop-card.available {
    border-color: var(--border-color);
}

.drop-card.owned {
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.15);
}

.drop-card.owned:hover .click-to-view {
    color: var(--success);
}

.drop-card.owned .price {
    color: var(--success);
}

.drop-card.owned .drop-badge {
    background: var(--success);
}

.click-to-view {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    padding: 8px 0;
    letter-spacing: 0.5px;
}

.drop-card:hover .click-to-view {
    color: var(--accent);
}

.drop-card.featured {
    max-width: 900px;
    margin: 0 auto;
}

.drop-header {
    padding: 25px 30px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.drop-badge {
    background: var(--accent);
    color: var(--text-primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.drop-badge.sold {
    background: var(--text-muted);
}

.stock-badge {
    background: rgba(255, 107, 53, 0.15);
    color: var(--accent);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.stock-badge.owned {
    background: rgba(74, 222, 128, 0.15);
    color: var(--success);
}

.drop-title {
    font-size: 1.25rem;
    font-weight: 600;
    padding: 0 20px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.featured-title {
    font-size: 1.5rem;
    padding: 0 30px;
    margin-top: 0;
    margin-bottom: 20px;
}

.drop-content {
    padding: 30px;
}

.drop-section {
    margin-bottom: 30px;
}

.drop-section:last-child {
    margin-bottom: 0;
}

.drop-section h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.drop-included {
    background: var(--bg-darker);
    border-radius: 12px;
    padding: 25px;
}

.drop-included h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.drop-included ul {
    list-style: none;
}

.drop-included li {
    color: var(--text-secondary);
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.drop-included li:last-child {
    border-bottom: none;
}

.drop-footer {
    padding: 25px 30px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.price-stock {
    display: flex;
    align-items: center;
    gap: 20px;
}

.price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
}

.stock {
    font-size: 0.9rem;
    color: var(--text-muted);
    background: var(--bg-darker);
    padding: 8px 15px;
    border-radius: 20px;
}

.buy-button {
    background: var(--accent);
    color: var(--text-primary);
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.buy-button:hover {
    background: var(--accent-hover);
}

/* Design Grid */
.design-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.design-thumb {
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.design-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Ad Grid */
.ad-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.ad-thumb {
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    position: relative;
}

.ad-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ad-thumb.video-ad .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    color: var(--text-primary);
    background: rgba(0, 0, 0, 0.7);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Drops Grid */
.drops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.drop-previews {
    padding: 0 20px;
    margin-bottom: 15px;
}

.preview-row {
    display: flex;
    gap: 8px;
}

.preview-thumb {
    flex: 1;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.preview-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.drop-info {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.drop-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
}

.drop-includes {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.drop-includes span {
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.drop-actions {
    padding: 15px 20px;
    display: flex;
    gap: 10px;
}

.view-button {
    flex: 1;
    text-align: center;
    padding: 12px 20px;
    background: transparent;
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 8px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.view-button:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--accent);
}

.buy-button-small {
    flex: 1;
    padding: 12px 20px;
    background: var(--accent);
    border: none;
    border-radius: 8px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.buy-button-small:hover {
    background: var(--accent-hover);
}

/* Sold Out */
.sold-out-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 25px;
}

.drop-card.sold-out-card {
    opacity: 0.7;
}

.drop-card.sold-out-card .drop-title,
.drop-card.sold-out-card .mini-section h4,
.drop-card.sold-out-card .mini-includes span {
    color: var(--text-muted);
}

/* Mini Card Components */
.mini-section {
    padding: 0 20px;
    margin-bottom: 15px;
}

.mini-section h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.mini-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}

.mini-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.mini-thumb {
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-darker);
    position: relative;
}

.mini-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-thumb.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--border-color);
}

.mini-thumb.placeholder span {
    color: var(--text-muted);
    font-size: 0.7rem;
}

.mini-thumb.video-thumb {
    position: relative;
    cursor: pointer;
}

.play-icon-small {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1rem;
    color: white;
    background: rgba(0, 0, 0, 0.6);
    padding: 8px 10px;
    border-radius: 50%;
}

.mini-includes {
    padding: 0 20px;
    margin-bottom: 15px;
}

.mini-includes span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Previous Drop Details */
.prev-details {
    padding: 20px;
    border-top: 1px solid var(--border-color);
    background: var(--bg-darker);
}

/* Details Tabs */
.prev-details-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 15px;
    padding: 0 20px;
}

.prev-details-tab {
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
}

.prev-details-tab:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.prev-details-tab.active {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

/* Tab Content */
.prev-tab-content {
    display: block;
}

.prev-tab-content[data-tab] {
    display: none;
}

.prev-tab-content[data-tab].active {
    display: block;
}

/* Download Grid */
.prev-download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
}

.prev-download-item {
    display: block;
    text-decoration: none;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    position: relative;
    transition: transform 0.2s;
}

.prev-download-item:hover {
    transform: translateY(-2px);
}

.prev-download-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.prev-download-item.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    border: 2px dashed var(--border-color);
}

.prev-download-item.placeholder span {
    color: var(--text-muted);
    font-size: 0.7rem;
}

.prev-dl-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 6px;
    background: var(--accent);
    color: white;
    border: none;
    font-size: 0.7rem;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s;
}

.prev-download-item:hover .prev-dl-btn {
    opacity: 1;
}

/* Video Section */
.prev-video-container {
    margin-bottom: 15px;
}

.prev-video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.prev-video-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.prev-video-preview {
    position: relative;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
}

.prev-video-preview img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.prev-video-preview.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16/9;
    background: var(--bg-darker);
    border: 2px dashed var(--border-color);
}

.prev-video-preview.placeholder span {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.prev-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    color: white;
    background: rgba(0, 0, 0, 0.7);
    padding: 12px 18px;
    border-radius: 50%;
    cursor: pointer;
}

.prev-video-dl-btn {
    padding: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-secondary);
    font-size: 0.75rem;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}

.prev-video-dl-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Video Player */
.prev-video-player {
    background: var(--bg-darker);
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 15px;
}

.prev-video-close {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    background: var(--danger);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    cursor: pointer;
}

/* Text Lists */
.prev-text-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.prev-text-item {
    background: var(--bg-card);
    padding: 12px;
    border-radius: 8px;
}

.prev-text-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.prev-text-header strong {
    font-size: 0.9rem;
}

.prev-text-item p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.prev-copy-btn {
    padding: 4px 10px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 0.7rem;
    color: var(--text-muted);
    cursor: pointer;
}

.prev-copy-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Captions */
.prev-captions-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.prev-caption-item {
    background: var(--bg-card);
    padding: 12px;
    border-radius: 8px;
}

.prev-caption-header {
    margin-bottom: 8px;
}

.prev-caption-header strong {
    font-size: 0.9rem;
}

.prev-caption-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 8px;
}

.prev-caption-row p {
    flex: 1;
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.prev-copy-btn-sm {
    padding: 3px 8px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 0.65rem;
    color: var(--text-muted);
    cursor: pointer;
    flex-shrink: 0;
}

.prev-copy-btn-sm:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Target */
.prev-target {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.prev-target-row {
    display: flex;
    gap: 10px;
    font-size: 0.85rem;
}

.prev-target-label {
    color: var(--text-muted);
    min-width: 90px;
    flex-shrink: 0;
}

.stock-badge.sold {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

/* View More / Fade for Drops Grids */
.drops-section-wrapper {
    position: relative;
}

.drops-grid-container {
    position: relative;
}

.drops-grid-container.collapsed {
    max-height: 1600px;
    overflow: hidden;
}

.drops-grid-container.collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--bg-dark));
    pointer-events: none;
    z-index: 2;
}

.view-more-btn {
    display: block;
    margin: 25px auto 0;
    padding: 14px 40px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    z-index: 3;
}

.view-more-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(255, 107, 53, 0.05);
}

.view-more-btn .arrow {
    display: inline-block;
    margin-left: 8px;
    transition: transform 0.3s;
}

.view-more-btn.expanded .arrow {
    transform: rotate(180deg);
}

.drops-grid,
.sold-out-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 25px;
    padding-top: 5px;
}

@media (max-width: 768px) {
    .drops-grid-container.collapsed {
        max-height: 1200px;
    }
    
    .drops-grid,
    .sold-out-grid {
        grid-template-columns: 1fr;
    }
    
    .mini-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .mini-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.sold-out-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--danger);
    color: var(--text-primary);
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 10;
}

/* View Details Toggle */
.view-details-toggle {
    padding: 0 30px 25px;
}

.view-details-btn {
    width: 100%;
    padding: 18px 30px;
    background: var(--accent);
    color: var(--text-primary);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s;
}

.view-details-btn:hover {
    background: var(--accent-hover);
}

.view-btn-icon {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.view-btn-icon.rotated {
    transform: rotate(180deg);
}

/* Expanded Detail View */
.drop-detail-expanded {
    display: none;
}

.drop-detail-expanded.open {
    display: block;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.detail-section {
    margin-bottom: 50px;
}

.detail-section:last-child {
    margin-bottom: 0;
}

.detail-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-primary);
}

/* Design Items */
.design-item {
    display: flex;
    gap: 30px;
    padding: 25px;
    background: rgba(30, 30, 30, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 20px;
}

.design-item:hover {
    border-color: rgba(255, 107, 53, 0.3);
}

.design-item-preview {
    width: 200px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.design-item-preview img {
    width: 100%;
    height: auto;
    display: block;
}

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

.design-item-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--accent);
}

.design-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.item-actions {
    display: flex;
    gap: 15px;
}

/* Download & Copy Buttons */
.download-btn {
    display: inline-block;
    padding: 12px 24px;
    background: rgba(255, 107, 53, 0.15);
    color: var(--accent);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.download-btn:hover {
    background: rgba(255, 107, 53, 0.25);
    border-color: var(--accent);
}

.copy-btn {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: rgba(255, 107, 53, 0.15);
    color: var(--accent);
    border-color: rgba(255, 107, 53, 0.3);
}

.copy-btn.copied {
    background: rgba(74, 222, 128, 0.15);
    color: var(--success);
    border-color: rgba(74, 222, 128, 0.3);
}

/* Mockups Grid */
.mockups-grid-expanded {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.mockup-item {
    background: rgba(30, 30, 30, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
}

.mockup-item:hover {
    border-color: rgba(255, 107, 53, 0.3);
}

.mockup-item img {
    width: 100%;
    height: auto;
    display: block;
}

.mockup-item .download-btn {
    display: block;
    text-align: center;
    padding: 15px;
    border-radius: 0;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Videos Grid */
.videos-grid-expanded {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.video-item {
    background: rgba(30, 30, 30, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
}

.video-item video {
    width: 100%;
    display: block;
}

.video-item .download-btn {
    display: block;
    text-align: center;
    padding: 15px;
    border-radius: 0;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Text Items */
.text-item {
    background: rgba(30, 30, 30, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
}

.text-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.text-item-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent);
}

.text-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Caption Groups */
.caption-group {
    background: rgba(30, 30, 30, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
}

.caption-group h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.caption-item {
    margin-bottom: 15px;
}

.caption-item:last-child {
    margin-bottom: 0;
}

.caption-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.caption-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.caption-content p {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    white-space: pre-wrap;
}

/* Target Audience Card */
.target-audience-card {
    background: rgba(30, 30, 30, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
}

.audience-row {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.audience-row:last-of-type {
    border-bottom: none;
}

.audience-label {
    font-weight: 600;
    color: var(--accent);
    min-width: 140px;
}

.audience-value {
    color: var(--text-secondary);
    flex: 1;
}

.copy-full-card {
    margin-top: 20px;
    padding: 12px 24px;
    width: 100%;
}

/* Footer */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 10px;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--text-secondary);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-powered {
    margin-top: 8px;
    font-size: 0.8rem;
    opacity: 0.7;
}

.footer-powered a {
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer-powered a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
    .design-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .ad-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .videos-grid-expanded {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .countdown {
        flex-wrap: wrap;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 15px 18px;
    }
    
    .countdown-value {
        font-size: 1.75rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .drops-grid {
        grid-template-columns: 1fr;
    }
    
    .drop-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .drop-footer {
        flex-direction: column;
        align-items: stretch;
    }
    
    .drop-actions {
        flex-direction: column;
    }
    
    .design-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ad-grid {
        grid-template-columns: 1fr;
    }
    
    .sold-out-grid {
        grid-template-columns: 1fr;
    }
    
    .design-item {
        flex-direction: column;
    }
    
    .design-item-preview {
        width: 100%;
    }
    
    .caption-content {
        flex-direction: column;
    }
    
    .audience-row {
        flex-direction: column;
        gap: 5px;
    }
    
    .audience-label {
        min-width: auto;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .logo {
        font-size: 1.25rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 12px 14px;
    }
    
    .countdown-value {
        font-size: 1.5rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .design-grid {
        grid-template-columns: 1fr;
    }
}

/* Auth Pages */
.auth-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.auth-container {
    width: 100%;
    max-width: 400px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
}

.auth-container h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
    text-align: center;
}

.auth-subtitle {
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 30px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group input {
    padding: 14px 16px;
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: border-color 0.2s;
    width: 100%;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent);
}

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

.password-input {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input input {
    padding-right: 50px;
}

.toggle-password {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.1rem;
    padding: 5px;
}

.toggle-password:hover {
    color: var(--text-secondary);
}

.auth-btn {
    padding: 16px;
    background: var(--accent);
    color: var(--text-primary);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.auth-btn:hover {
    background: var(--accent-hover);
}

.auth-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.auth-error {
    color: var(--danger);
    font-size: 0.875rem;
    text-align: center;
    display: none;
}

.auth-success {
    color: var(--success);
    font-size: 0.875rem;
    text-align: center;
}

.auth-switch {
    text-align: center;
    margin-top: 24px;
    color: var(--text-secondary);
}

.auth-switch a {
    color: var(--accent);
    font-weight: 600;
}

/* ===========================================
   PROFILE PAGE - Redesigned
   =========================================== */

.profile-section {
    padding: 80px 20px 60px;
    min-height: calc(100vh - 200px);
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}

.profile-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
}

.profile-info h1 {
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
}

.user-email {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 4px 0 0;
}

/* Profile Tabs */
.profile-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0;
}

.ptab-btn {
    padding: 14px 24px;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: -1px;
}

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

.ptab-btn.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

/* Tab Content */
.ptab-content {
    display: none;
}

.ptab-content.active {
    display: block;
}

/* Drop Cards on Profile */
.profile-drops-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 40px;
}

.profile-drop-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}

.profile-drop-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.profile-drop-thumb {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid var(--border-color);
}

.profile-drop-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-drop-thumb-empty {
    background: var(--bg-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.profile-drop-info {
    flex: 1;
    min-width: 0;
}

.profile-drop-badge {
    display: inline-block;
    background: rgba(255, 107, 53, 0.15);
    color: var(--accent);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.profile-drop-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.profile-drop-date {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin: 2px 0 0;
}

.profile-drop-arrow {
    color: var(--text-muted);
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: color 0.2s, transform 0.2s;
}

.profile-drop-card:hover .profile-drop-arrow {
    color: var(--accent);
    transform: translateX(3px);
}

/* Empty State */
.profile-empty {
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.profile-empty-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.profile-empty p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
}

.profile-empty-link {
    display: inline-block;
    margin-top: 16px;
    padding: 10px 24px;
    background: var(--accent);
    color: white;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.profile-empty-link:hover {
    background: var(--accent-hover);
}

/* Redeem Box */
.redeem-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.redeem-box-left {
    flex-shrink: 0;
}

.redeem-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
}

.redeem-box-right {
    display: flex;
    gap: 8px;
    flex: 1;
    min-width: 200px;
}

.redeem-box-right input {
    flex: 1;
    padding: 10px 14px;
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    max-width: 160px;
}

.redeem-box-right input:focus {
    outline: none;
    border-color: var(--accent);
}

.redeem-submit {
    padding: 10px 20px;
    background: var(--accent);
    color: var(--text-primary);
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.redeem-submit:hover {
    background: var(--accent-hover);
}

.redeem-message {
    width: 100%;
    margin-top: 8px;
    padding: 10px;
    border-radius: 6px;
    text-align: center;
    font-size: 0.9rem;
    display: none;
}

.redeem-message.error,
.redeem-message.success {
    display: block;
}

.redeem-message.success {
    background: rgba(74, 222, 128, 0.15);
    color: var(--success);
}

.redeem-message.error {
    background: rgba(239, 68, 68, 0.15);
    color: var(--danger);
}

/* Purchase History */
.profile-history-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.history-row {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 16px 20px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}

.history-row:hover {
    border-color: var(--accent);
    transform: translateY(-1px);
}

.history-row-left {
    flex: 1;
    min-width: 0;
}

.history-row-badge {
    display: inline-block;
    background: rgba(255, 107, 53, 0.15);
    color: var(--accent);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.history-row-title {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.history-row-center {
    flex-shrink: 0;
    text-align: center;
}

.history-row-method {
    display: block;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.history-row-date {
    display: block;
    color: var(--text-muted);
    font-size: 0.75rem;
    margin-top: 2px;
}

.history-row-right {
    flex-shrink: 0;
}

.history-row-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--accent);
}

/* Settings Cards */
.settings-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}

.settings-card-header {
    padding: 16px 20px;
    font-weight: 700;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    gap: 8px;
}

.settings-card-icon {
    font-size: 1.1rem;
}

.settings-card-body {
    padding: 4px 20px 20px;
}

.settings-input-readonly {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 0.95rem;
    cursor: not-allowed;
}



.settings-account-row {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 20px;
}

.settings-account-field {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.settings-account-label {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.settings-account-value {
    color: var(--text-primary);
    font-size: 0.95rem;
}

/* Settings Rows */
.settings-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid var(--border-color);
}

.settings-row:last-of-type {
    border-bottom: none;
}

.settings-row.settings-row-last {
    border-bottom: none;
}

.settings-row-info {
    flex: 1;
}

.settings-row-label {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.settings-row-sub {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.settings-row-badge {
    background: rgba(74, 222, 128, 0.15);
    color: var(--success);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    flex-shrink: 0;
}

.settings-message {
    margin-top: 12px;
    padding: 10px;
    border-radius: 6px;
    text-align: center;
    font-size: 0.9rem;
}

.settings-message.success {
    background: rgba(74, 222, 128, 0.15);
    color: var(--success);
}

.settings-message.error {
    background: rgba(239, 68, 68, 0.15);
    color: var(--danger);
}

.settings-note {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0 0 16px;
}

.settings-signout-btn {
    padding: 10px 24px;
    background: transparent;
    color: var(--danger);
    border: 1px solid rgba(239, 68, 68, 0.4);
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.settings-signout-btn:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: var(--danger);
}

.settings-card-danger {
    border-color: rgba(239, 68, 68, 0.2);
}

/* Profile Responsive */
@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;
        text-align: center;
    }

    .profile-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .ptab-btn {
        padding: 12px 16px;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .profile-drop-card {
        padding: 12px;
    }

    .profile-drop-thumb {
        width: 50px;
        height: 50px;
    }

    .profile-drop-title {
        font-size: 0.95rem;
    }

    .redeem-box {
        flex-direction: column;
        align-items: stretch;
    }

    .redeem-box-right input {
        max-width: none;
    }

    .history-row {
        flex-wrap: wrap;
        padding: 14px;
    }

    .history-row-center {
        width: 100%;
        order: 3;
        text-align: left;
        margin-top: -4px;
    }

    .history-row-right {
        order: 2;
    }

    .settings-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .settings-row-value {
        width: 100%;
        justify-content: space-between;
    }
}

/* Auth Popup */
#auth-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}

.popup-content {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    max-width: 400px;
    width: 90%;
    text-align: center;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
}

.popup-content h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.popup-content p {
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.popup-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.popup-btn {
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}

.popup-btn.primary {
    background: var(--accent);
    color: var(--text-primary);
}

.popup-btn.primary:hover {
    background: var(--accent-hover);
}

.popup-btn.secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.popup-btn.secondary:hover {
    border-color: var(--accent);
}

.popup-dismiss {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.9rem;
}

.popup-dismiss:hover {
    color: var(--text-secondary);
}

/* */
.drop-detail-expanded.locked .tab-content {
    display: none !important;
}

.drop-detail-expanded:not(.locked) .locked-overlay {
    display: none !important;
}

.drop-detail-expanded:not(.locked) .tab-content.active {
    display: block !important;
}

/* Content Tabs */
.content-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.content-tab {
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.content-tab:hover:not(.active) {
    border-color: var(--accent);
    color: var(--accent);
}

.content-tab.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--text-primary);
}

.content-tab.active:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--text-primary);
}

.tab-content {
    display: none !important;
}

.tab-content.active {
    display: block !important;
}

/* Download Cards (Compact Grid) */
.design-grid-compact,
.mockups-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
}

/* Videos */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.video-player.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    border-radius: 0;
}

.video-player.fullscreen video {
    height: 100vh;
    object-fit: contain;
    border-radius: 0;
}

@media (max-width: 768px) {
    .videos-grid {
        grid-template-columns: 1fr;
    }
}

/* Text List Compact */
.text-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.text-item-compact {
    background: rgba(30, 30, 30, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px;
}

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

.text-header strong {
    color: var(--accent);
}

.text-item-compact p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Captions Grid */
.captions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}

.caption-compact {
    background: rgba(30, 30, 30, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px;
}

.caption-header {
    margin-bottom: 12px;
}

.caption-header strong {
    color: var(--accent);
}

.caption-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 6px;
}

.platform-tag {
    background: var(--accent);
    color: var(--text-primary);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
}

.caption-row p {
    flex: 1;
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

.copy-btn-sm {
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-size: 0.75rem;
    cursor: pointer;
    flex-shrink: 0;
}

.copy-btn-sm:hover {
    background: rgba(255, 107, 53, 0.15);
    color: var(--accent);
}

/* Audience Card Compact */
.audience-card-compact {
    background: rgba(30, 30, 30, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
}

.audience-row-compact {
    display: flex;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.audience-row-compact:last-of-type {
    border-bottom: none;
}

.audience-row-compact .audience-label {
    color: var(--accent);
    font-weight: 600;
    min-width: 100px;
    flex-shrink: 0;
}

.audience-row-compact .audience-value {
    color: var(--text-secondary);
}

/* Responsive Tabs */
@media (max-width: 768px) {
    .content-tabs {
        gap: 6px;
    }
    
    .content-tab {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
    
    .design-grid-compact,
    .mockups-grid-compact {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .captions-grid {
        grid-template-columns: 1fr;
    }
    
    .audience-row-compact {
        flex-direction: column;
        gap: 5px;
    }
}

/* Temporary View All Button - Remove before launch */
.view-all-btn {
    display: block;
    margin: 10px auto 0;
    padding: 8px 16px;
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--text-muted);
    border-radius: 4px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
}

.view-all-btn:hover {
    color: var(--accent);
    border-color: var(--accent);
}

/* Responsive Auth */
@media (max-width: 768px) {
    .auth-container {
        padding: 30px 20px;
    }
}

/* ===========================================
   PAYMENT & LOCKED CONTENT STYLES
   =========================================== */

/* Locked Banner */
.locked-banner {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.locked-banner::before {
    content: '';
}

/* Unlocked Banner */
.unlocked-banner {
    display: none !important;
}

/* Mini View Details Button (for prev/sold drops) */
.mini-view-btn {
    padding: 12px 20px;
    font-size: 0.9rem;
}

.mini-view-btn .view-btn-icon {
    font-size: 0.8rem;
}

.mini-view-btn.locked {
    background: var(--text-muted);
    cursor: not-allowed;
    opacity: 0.7;
}

.mini-view-btn.locked:hover {
    background: var(--text-muted);
    transform: none;
}

/* Sold Out Button */
.buy-button.sold-out-btn {
    background: var(--text-muted);
    cursor: not-allowed;
    opacity: 0.6;
}

.buy-button.sold-out-btn:hover {
    background: var(--text-muted);
    transform: none;
}

/* View Details Button Locked State */
.view-details-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: var(--text-muted);
}

/* Buy Button Container */
.buy-button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.buy-button-container .locked-banner {
    width: 100%;
}

/* Loading State */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
}

/* Auth Modal */
.auth-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    cursor: pointer;
}

.auth-modal-content {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    max-width: 440px;
    width: 100%;
    text-align: center;
    z-index: 1;
}

.auth-modal-content h2 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.auth-modal-content p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.auth-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
}

.auth-modal-close:hover {
    color: var(--text-primary);
}

.auth-modal-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.auth-btn-primary {
    background: var(--accent) !important;
    color: var(--bg-dark) !important;
}

.auth-btn-secondary {
    background: transparent !important;
    border: 1px solid var(--border-color) !important;
    color: var(--text-primary) !important;
}

.auth-btn-secondary:hover {
    background: var(--bg-darker) !important;
}

/* Payment Banners */
.success-banner, .cancelled-banner {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    margin: 20px 0;
}

.success-banner {
    border-color: var(--success, #4ade80);
}

.success-banner h3 {
    color: var(--success, #4ade80);
    margin-bottom: 8px;
}

.cancelled-banner {
    border-color: var(--danger, #ef4444);
}

.cancelled-banner h3 {
    color: var(--danger, #ef4444);
    margin-bottom: 8px;
}

.payment-success-banner, .payment-cancelled-banner {
    margin-bottom: 20px;
}

.btn-primary {
    display: inline-block;
    padding: 12px 24px;
    background: var(--accent);
    color: var(--bg-dark);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 12px;
}

.btn-primary:hover {
    opacity: 0.9;
}

/* Skeleton Loading */
.skeleton-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    animation: skeleton-pulse 1.5s infinite ease-in-out;
}

.skeleton-card-inner {
    height: 120px;
    background: var(--bg-darker);
    border-radius: 8px;
    animation: skeleton-pulse 1.5s infinite ease-in-out;
}

@keyframes skeleton-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
}

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

/* Responsive Payment Styles */
@media (max-width: 768px) {
    .auth-modal-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .auth-modal-content h2 {
        font-size: 1.5rem;
    }
    
    .success-banner,
    .cancelled-banner {
        margin: 0 20px;
        padding: 15px 20px;
    }
}

/*===========================================
   DROP CARD BUY BUTTON STYLES
   =========================================== */

.drop-footer .buy-button {
    width: 100%;
}

.drop-card.available .buy-button {
    background: var(--accent);
}

.drop-card.available .buy-button:hover {
    background: var(--accent-hover);
}

.drop-card.sold-out .buy-button {
    background: var(--text-muted);
    cursor: not-allowed;
}

.drop-card.sold-out .buy-button:hover {
    background: var(--text-muted);
}

/* ===========================================
   ABOUT PAGE
   =========================================== */

.about-hero {
    background: linear-gradient(135deg, var(--bg-darker) 0%, rgba(255, 107, 53, 0.08) 50%, var(--bg-darker) 100%);
    padding: 100px 0 60px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.about-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-intro {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-block {
    max-width: 700px;
    margin: 0 auto;
}

.about-block h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-align: center;
}

.about-block.centered {
    text-align: center;
}

.about-block p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-block p:last-child {
    margin-bottom: 0;
}

/* Inclusions Grid (What's Included) */
.inclusions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.inclusion-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 35px 25px 30px;
    text-align: center;
    transition: transform 0.2s, border-color 0.2s;
}

.inclusion-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
}

.inclusion-icon {
    font-size: 2.5rem;
    margin-bottom: 18px;
    display: block;
}

.inclusion-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.inclusion-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Steps (How It Works) */
.steps-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 40px;
    position: relative;
}

.step:last-child {
    margin-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.step:not(:last-child) .step-number::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 100%;
    width: 2px;
    height: calc(100% + 20px);
    background: linear-gradient(to bottom, var(--accent), var(--border-color));
    transform: translateX(-50%);
    z-index: 1;
}

.step:last-child .step-number {
    background: var(--success);
}

.step-content {
    flex: 1;
    padding-top: 5px;
}

.step-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

/* Benefits List */
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 25px 0 0;
    text-align: left;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-list li {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 35px;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
    font-size: 1.1rem;
}

.benefits-list li:last-child {
    border-bottom: none;
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: linear-gradient(135deg, var(--bg-darker) 0%, rgba(255, 107, 53, 0.1) 100%);
    padding: 80px 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-section p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 35px;
    line-height: 1.6;
}

/* Mobile responsive for about page */
@media (max-width: 768px) {
    .about-hero {
        padding: 60px 0 40px;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .about-intro {
        font-size: 1rem;
    }

    .inclusions-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .inclusion-card {
        padding: 25px 20px;
    }

    .step {
        gap: 15px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .step-number::after {
        display: none;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .about-block h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 1.7rem;
    }

    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .step-content {
        padding-top: 0;
    }

    .benefits-list li {
        font-size: 0.95rem;
    }
}

/* ===========================================
   DROP PAGE - Dedicated Drop View
   =========================================== */

.drop-page-section {
    padding: 40px 20px 80px;
    min-height: calc(100vh - 200px);
}

.drop-back-link {
    display: inline-block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 30px;
    transition: color 0.2s;
}

.drop-back-link:hover {
    color: var(--accent);
}

.drop-page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.drop-page-header-left {
    flex: 1;
    min-width: 0;
}

.drop-page-header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex-shrink: 0;
}

.drop-page-badge {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.dp-badge-sold {
    background: var(--text-muted) !important;
}

.drop-page-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 6px;
}

.drop-page-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

.drop-page-stock {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    background: rgba(255, 107, 53, 0.15);
    color: var(--accent);
}

.dp-stock-low {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
}

.dp-stock-sold {
    background: rgba(239, 68, 68, 0.15);
    color: var(--danger);
}

.drop-page-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
}

/* ===========================================
   DROP PAGE - OWNED STATE (green accents)
   =========================================== */

.drop-page-section.owned .drop-page-badge {
    background: var(--success);
}

.drop-page-section.owned .drop-page-price {
    color: var(--success);
}

.drop-page-section.owned .drop-page-stock {
    background: rgba(74, 222, 128, 0.15);
    color: var(--success);
}

.drop-page-section.owned .dp-tab:hover:not(.active) {
    border-color: var(--success);
    color: var(--success);
}

.drop-page-section.owned .dp-tab.active,
.drop-page-section.owned .dp-tab.active:hover {
    background: var(--success);
    border-color: var(--success);
    color: white;
}

.drop-page-section.owned .platform-tag {
    background: var(--success);
}

.drop-page-section.owned .card-dl-btn {
    background: var(--success);
}

.drop-page-section.owned .card-dl-btn:hover {
    background: #059669;
}

.drop-page-section.owned .media-card:hover {
    border-color: var(--success);
}

.drop-page-section.owned .dp-text-header strong {
    color: var(--success);
}

.drop-page-section.owned .dp-caption-header strong {
    color: var(--success);
}

.drop-page-section.owned .dp-target-label {
    color: var(--success);
}

.drop-page-section.owned .dp-copy-btn:hover {
    border-color: var(--success);
    color: var(--success);
}

.drop-page-section.owned .dp-copy-btn-sm:hover {
    background: rgba(74, 222, 128, 0.15);
    color: var(--success);
    border-color: var(--success);
}

/* Buy/Lock Banner */
.dp-buy-banner {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.dp-buy-banner.dp-buy-owned {
    border-color: rgba(74, 222, 128, 0.3);
    background: rgba(74, 222, 128, 0.05);
}

.dp-buy-banner.dp-buy-locked {
    border-color: rgba(255, 107, 53, 0.3);
    background: rgba(255, 107, 53, 0.05);
}

#dp-buy-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.dp-buy-owned #dp-buy-text {
    color: var(--success);
    font-weight: 600;
}

.dp-buy-btn {
    padding: 14px 32px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.dp-buy-btn:hover {
    background: var(--accent-hover);
}

/* Tabs */
.drop-page-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.dp-tab {
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.dp-tab:hover:not(.active) {
    border-color: var(--accent);
    color: var(--accent);
}

.dp-tab.active {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.dp-tab.active:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.dp-tab-content {
    display: none;
}

.dp-tab-content.active {
    display: block;
}

/* ===========================================
   LOCKED CONTENT OVERLAY
   =========================================== */

.dp-tab-content.locked {
    position: relative;
}

.dp-tab-content.locked > *:not(.dp-lock-overlay) {
    filter: blur(10px);
    pointer-events: none;
    user-select: none;
    opacity: 0.6;
}

.dp-lock-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    pointer-events: none;
    text-align: center;
}

.dp-lock-icon {
    width: 48px;
    height: 48px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.dp-lock-text {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    background: rgba(10, 10, 10, 0.8);
    padding: 8px 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.locked-tab-icon {
    font-size: 0.7rem;
    opacity: 0.6;
    margin-left: 4px;
}

@media (max-width: 768px) {
    .dp-lock-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .dp-lock-text {
        font-size: 0.85rem;
        padding: 6px 14px;
    }
}

/* Download Grid */
.dp-download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.dp-download-card {
    display: block;
    background: rgba(30, 30, 30, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}

.dp-download-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
}

.dp-download-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}

.dp-download-label {
    display: block;
    padding: 10px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
    background: var(--bg-darker);
}

/* Videos */
.dp-video-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#dp-videos-area {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.dp-video-preview {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 16/9;
}

.dp-video-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.dp-video-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bg-darker);
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-muted);
}

.dp-video-dl {
    display: block;
    text-align: center;
    padding: 12px;
    background: rgba(255, 107, 53, 0.15);
    color: var(--accent);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.dp-video-dl:hover {
    background: rgba(255, 107, 53, 0.25);
}

/* Text Items */
.dp-text-item {
    background: rgba(30, 30, 30, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 18px;
    margin-bottom: 12px;
}

.dp-text-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.dp-text-header strong {
    color: var(--accent);
    font-size: 1rem;
}

.dp-text-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Captions */
.dp-captions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 16px;
}

.dp-caption-card {
    background: rgba(30, 30, 30, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 18px;
}

.dp-caption-header {
    margin-bottom: 12px;
}

.dp-caption-header strong {
    color: var(--accent);
    font-size: 1rem;
}

.dp-caption-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 6px;
}

.dp-caption-row p {
    flex: 1;
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

/* Copy Buttons */
.dp-copy-btn {
    padding: 5px 12px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 0.75rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
}

.dp-copy-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.dp-copy-btn-sm {
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-size: 0.7rem;
    color: var(--text-muted);
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.2s;
}

.dp-copy-btn-sm:hover {
    background: rgba(255, 107, 53, 0.15);
    color: var(--accent);
    border-color: var(--accent);
}

/* Target */
.dp-target-card {
    background: rgba(30, 30, 30, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
}

.dp-target-row {
    display: flex;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dp-target-row:last-child {
    border-bottom: none;
}

.dp-target-label {
    color: var(--accent);
    font-weight: 600;
    min-width: 100px;
    flex-shrink: 0;
}

.dp-target-value {
    color: var(--text-secondary);
    flex: 1;
}

/* Empty */
.dp-empty-msg {
    color: var(--text-muted);
    text-align: center;
    padding: 40px;
}

/* Error */
.dp-error {
    text-align: center;
    padding: 60px 20px;
    color: var(--danger);
}

.dp-error p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.dp-error-link {
    color: var(--accent);
    text-decoration: underline;
}

/* Loading */
.dp-loading {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.dp-loading-spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-color);
    border-radius: 50%;
    border-top-color: var(--accent);
    animation: spin 0.8s linear infinite;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .drop-page-header {
        flex-direction: column;
    }

    .drop-page-header-right {
        flex-direction: row;
        align-items: center;
    }

    .drop-page-title {
        font-size: 1.5rem;
    }

    .drop-page-price {
        font-size: 1.5rem;
    }

    .dp-buy-banner {
        flex-direction: column;
        text-align: center;
    }

    #dp-buy-text {
        min-width: 0;
    }

    .dp-buy-btn {
        width: 100%;
    }

    .drop-page-tabs {
        gap: 6px;
    }

    .dp-tab {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .dp-download-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    #dp-videos-area {
        grid-template-columns: 1fr;
    }

    .dp-captions-grid {
        grid-template-columns: 1fr;
    }

    .dp-target-row {
        flex-direction: column;
        gap: 5px;
    }

    .dp-target-label {
        min-width: auto;
    }
}

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

/* ===========================================
   UNIFIED LIGHTBOX (Images + Videos)
   =========================================== */

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

.image-lightbox.open {
    display: flex;
}

.image-lightbox img,
.image-lightbox video {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    background: #000;
}

.image-lightbox video {
    width: auto;
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 25px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: white;
    font-size: 1.6rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 10001;
    line-height: 1;
    padding: 0;
}

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

.lightbox-download {
    position: fixed;
    bottom: 25px;
    right: 25px;
    padding: 12px 24px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10001;
    transition: background 0.2s;
    font-family: inherit;
}

.lightbox-download:hover {
    background: var(--accent-hover);
}

.lightbox-download svg {
    width: 18px;
    height: 18px;
}

/* Visible Download Button on Image/Video Cards */
.card-dl-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background: var(--accent);
    color: white;
    border: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
    font-family: inherit;
}

.card-dl-btn:hover {
    background: var(--accent-hover);
}

.card-dl-btn svg {
    width: 14px;
    height: 14px;
    vertical-align: middle;
    margin-right: 4px;
}

/* Wrapper for media with download button below */
.media-card {
    background: rgba(30, 30, 30, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s;
}

.media-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.media-card-thumb {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
    cursor: zoom-in;
    background: #000;
}

.media-card-thumb.video {
    aspect-ratio: 16/9;
    position: relative;
}

.media-card-video-wrap {
    position: relative;
    cursor: zoom-in;
}

.media-card-video-wrap .play-icon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0,0,0,0.7);
    color: white;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.skip-nav {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--accent);
    color: white;
    padding: 8px 16px;
    z-index: 10000;
    font-weight: 600;
    border-radius: 0 0 4px 0;
    text-decoration: none;
}

.skip-nav:focus {
    top: 0;
}

@media (max-width: 768px) {
    .image-lightbox img,
    .image-lightbox video {
        max-width: 95%;
        max-height: 78vh;
    }

    .lightbox-close {
        top: 12px;
        right: 15px;
        width: 42px;
        height: 42px;
        font-size: 1.4rem;
    }

    .lightbox-download {
        bottom: 15px;
        right: 15px;
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}