/* TURK Label - styles.css */
/* ═══════════════════════════════════════════════════════════════ */

:root {
    --primary: #e53935;
    --primary-dark: #c62828;
    --secondary: #1e3a5f;
    --gold: #f59e0b;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --dark: #1f2937;
    --gray: #6b7280;
    --light: #f3f4f6;
    --white: #ffffff;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--dark);
    color: var(--white);
    line-height: 1.6;
}

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

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

.hidden { display: none !important; }

/* ═══════════════════════════════════════════════════════════════ */
/* BUTTONS */
/* ═══════════════════════════════════════════════════════════════ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}
.btn-primary:hover { box-shadow: 0 4px 15px rgba(229, 57, 53, 0.4); }

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: white; }

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, #d97706 100%);
    color: white;
}

.btn-amazon {
    background: #ff9900;
    color: #111;
    padding: 15px 30px;
}
.btn-amazon img { margin-right: 10px; }

.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-link { background: none; color: var(--primary); padding: 8px; }

/* ═══════════════════════════════════════════════════════════════ */
/* NAVBAR */
/* ═══════════════════════════════════════════════════════════════ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(31, 41, 55, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.nav-logo {
    font-size: 20px;
    font-weight: bold;
    color: white;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    transition: color 0.3s;
}
.nav-link:hover { color: white; }

.nav-auth, .nav-user {
    display: flex;
    gap: 10px;
    align-items: center;
}

.user-credits {
    background: rgba(229, 57, 53, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-menu { display: none; }
    .nav-toggle { display: block; }
}

/* ═══════════════════════════════════════════════════════════════ */
/* PAGES */
/* ═══════════════════════════════════════════════════════════════ */

.page { display: none; }
.page.active { display: block; }

/* ═══════════════════════════════════════════════════════════════ */
/* HERO */
/* ═══════════════════════════════════════════════════════════════ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #1f2937 0%, #111827 50%, #0f172a 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(229, 57, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(229, 57, 53, 0.1) 0%, transparent 40%);
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 50px;
    justify-content: center;
    margin-top: 60px;
}

.stat-item { text-align: center; }
.stat-value { font-size: 2.5rem; font-weight: 700; color: var(--primary); }
.stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.6); }

@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .hero-stats { gap: 20px; }
    .stat-value { font-size: 1.8rem; }
}

/* ═══════════════════════════════════════════════════════════════ */
/* FEATURES */
/* ═══════════════════════════════════════════════════════════════ */

.features {
    padding: 100px 0;
    background: #111827;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    color: rgba(255,255,255,0.7);
    margin-bottom: 50px;
}

.highlight { color: var(--primary); font-weight: 600; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s, background 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.08);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
}

/* ═══════════════════════════════════════════════════════════════ */
/* PRICING */
/* ═══════════════════════════════════════════════════════════════ */

.pricing {
    padding: 100px 0;
    background: linear-gradient(180deg, #111827 0%, #1f2937 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.pricing-card {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(229, 57, 53, 0.3);
}

.pricing-card.popular {
    border-color: var(--primary);
    transform: scale(1.05);
    background: rgba(229, 57, 53, 0.1);
}

.pricing-card.vip {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.1) 100%);
}

.popular-badge, .vip-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.popular-badge {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.vip-badge {
    background: linear-gradient(135deg, var(--gold) 0%, #d97706 100%);
    color: white;
}

.pricing-icon { font-size: 3rem; margin-bottom: 15px; }
.pricing-name { font-size: 1.5rem; font-weight: 700; margin-bottom: 10px; }

.pricing-credits {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
}
.pricing-credits span {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
}

.pricing-bonus {
    color: var(--success);
    font-size: 0.9rem;
    margin-top: 5px;
}

.pricing-price {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 15px 0 5px;
    color: var(--primary);
}

.pricing-price.free {
    color: var(--success);
}

.pricing-per {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin: 20px 0;
    font-size: 0.9rem;
}

.pricing-features li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* CUSTOM PACKAGE */
.custom-package {
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.15) 0%, rgba(229, 57, 53, 0.05) 100%);
    border: 2px solid var(--primary);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 50px;
}

.custom-header {
    text-align: center;
    margin-bottom: 30px;
}

.custom-icon { font-size: 3rem; }
.custom-header h3 { font-size: 1.8rem; margin: 10px 0; }
.custom-header p { color: rgba(255,255,255,0.7); }

.custom-calculator {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}

.calc-input {
    margin-bottom: 20px;
}

.calc-input label {
    display: block;
    margin-bottom: 10px;
    color: rgba(255,255,255,0.7);
}

.calc-input input {
    width: 150px;
    padding: 15px;
    font-size: 1.5rem;
    text-align: center;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    color: white;
}

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

.calc-result {
    background: rgba(0,0,0,0.3);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.95rem;
}

.calc-row.bonus { color: var(--success); }
.calc-row.total { font-size: 1.2rem; font-weight: 700; color: var(--gold); }
.calc-row.price { font-size: 1.3rem; font-weight: 700; }
.calc-row.per { color: rgba(255,255,255,0.6); font-size: 0.85rem; }

/* COMPARISON TABLE */
.comparison-table {
    background: rgba(255,255,255,0.03);
    border-radius: 16px;
    padding: 30px;
    overflow-x: auto;
}

.comparison-table h3 {
    text-align: center;
    margin-bottom: 20px;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th, .comparison-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.comparison-table th {
    background: rgba(229, 57, 53, 0.2);
    font-weight: 600;
}

.comparison-table td:first-child {
    text-align: left;
}

/* ═══════════════════════════════════════════════════════════════ */
/* FOOTER */
/* ═══════════════════════════════════════════════════════════════ */

.footer {
    background: #0f172a;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 { margin-bottom: 10px; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: color 0.3s;
}
.footer-links a:hover { color: white; }

.footer-contact p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

/* ═══════════════════════════════════════════════════════════════ */
/* AUTH PAGES */
/* ═══════════════════════════════════════════════════════════════ */

.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
}

.auth-box {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 420px;
    text-align: center;
}

.auth-box h2 { margin-bottom: 10px; }
.auth-box > p { color: rgba(255,255,255,0.6); margin-bottom: 30px; }

.form-group {
    text-align: left;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 14px;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
}

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

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

.verify-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.verify-section h3 { margin-bottom: 10px; }
.verify-section p { color: rgba(255,255,255,0.6); margin-bottom: 20px; font-size: 0.9rem; }

.code-inputs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.code-input {
    width: 50px;
    height: 60px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    color: white;
}

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

.auth-footer {
    margin-top: 30px;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.auth-footer a {
    color: var(--primary);
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════ */
/* PANEL */
/* ═══════════════════════════════════════════════════════════════ */

.panel-container {
    display: flex;
    min-height: 100vh;
    padding-top: 70px;
}

.panel-sidebar {
    width: 250px;
    background: #111827;
    border-right: 1px solid rgba(255,255,255,0.1);
    position: fixed;
    top: 70px;
    left: 0;
    bottom: 0;
    overflow-y: auto;
}

.sidebar-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.sidebar-header .user-name { font-weight: 600; }
.sidebar-header .user-code { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

.sidebar-nav {
    padding: 20px 0;
}

.sidebar-nav .nav-item {
    display: block;
    padding: 15px 20px;
    color: rgba(255,255,255,0.7);
    transition: all 0.3s;
}

.sidebar-nav .nav-item:hover {
    background: rgba(255,255,255,0.05);
    color: white;
}

.sidebar-nav .nav-item.active {
    background: rgba(229, 57, 53, 0.2);
    color: var(--primary);
    border-left: 3px solid var(--primary);
}

.panel-main {
    flex: 1;
    margin-left: 250px;
    padding: 30px;
    background: var(--dark);
}

.panel-tab { display: none; }
.panel-tab.active { display: block; }

.panel-tab h1 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

/* STATS GRID */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
}

.stat-card .stat-icon { font-size: 2rem; margin-bottom: 10px; }
.stat-card .stat-value { font-size: 2rem; font-weight: 700; }
.stat-card .stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.6); }

.stat-card.amazon-card.connected {
    background: rgba(16, 185, 129, 0.2);
    border: 2px solid var(--success);
}

/* AMAZON CONNECT BOX */
.amazon-connect-box {
    background: linear-gradient(135deg, rgba(255, 153, 0, 0.1) 0%, rgba(255, 153, 0, 0.05) 100%);
    border: 2px dashed rgba(255, 153, 0, 0.5);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    margin-bottom: 30px;
}

.connect-icon { font-size: 3rem; margin-bottom: 15px; }
.amazon-connect-box h3 { margin-bottom: 10px; }
.amazon-connect-box p { color: rgba(255,255,255,0.7); margin-bottom: 10px; }
.amazon-connect-box .warning { color: var(--warning); font-size: 0.9rem; }

/* RECENT ACTIVITY */
.recent-activity {
    background: rgba(255,255,255,0.03);
    border-radius: 16px;
    padding: 25px;
}

.recent-activity h3 { margin-bottom: 20px; }

.activity-list { }

.activity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.activity-icon { font-size: 1.5rem; }
.activity-text { flex: 1; }
.activity-time { color: rgba(255,255,255,0.5); font-size: 0.85rem; }

/* SCAN FORM */
.scan-form { }

/* SCAN HEADER */
.scan-header {
    display: grid;
    grid-template-columns: 1fr 80px 80px 40px;
    gap: 10px;
    margin-bottom: 10px;
    padding: 10px 0;
    border-bottom: 2px solid rgba(255,255,255,0.1);
}

.scan-header span {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
}

.header-url { }
.header-count { text-align: center; }
.header-margin { text-align: center; }
.header-action { }

.scan-links {
    margin-bottom: 20px;
    max-height: 400px;
    overflow-y: auto;
}

.scan-row {
    display: grid;
    grid-template-columns: 1fr 80px 80px 40px;
    gap: 10px;
    margin-bottom: 10px;
    align-items: center;
}

.scan-row input {
    padding: 12px;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: white;
}

.scan-row input.scan-url {
    font-size: 0.9rem;
}

.scan-row input.scan-count,
.scan-row input.scan-margin {
    text-align: center;
    font-weight: 600;
}

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

.scan-row input::placeholder { color: rgba(255,255,255,0.4); }

.remove-row {
    background: var(--danger);
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    padding: 12px;
}

.add-row-btn {
    margin-bottom: 20px;
}

.scan-summary {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.95rem;
}

/* SCAN PROGRESS */
.scan-progress {
    text-align: center;
    padding: 40px;
}

.progress-header {
    margin-bottom: 30px;
}

.progress-icon { font-size: 3rem; }

.progress-bar-container {
    height: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    width: 0%;
    transition: width 0.3s;
}

.progress-text {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.progress-detail {
    color: rgba(255,255,255,0.6);
}

/* SCAN COMPLETE */
.scan-complete {
    text-align: center;
    padding: 60px 40px;
}

.complete-icon { font-size: 5rem; margin-bottom: 20px; }
.complete-count {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
    margin: 20px 0;
}

.complete-message {
    font-size: 1.5rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(217, 119, 6, 0.1) 100%);
    padding: 20px;
    border-radius: 12px;
    margin: 30px 0;
}

/* PRODUCT RESULT */
.product-result {
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 25px;
    margin-top: 20px;
}

/* EMPTY STATE */
.empty-state {
    text-align: center;
    padding: 60px;
    color: rgba(255,255,255,0.5);
}

.empty-state span { font-size: 3rem; }

/* CREDIT PACKAGES */
.credit-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.credit-card {
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
    position: relative;
}

.credit-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.credit-card.popular { border-color: var(--primary); }
.credit-card.vip { border-color: var(--gold); }

.credit-icon { font-size: 2.5rem; margin-bottom: 10px; }
.credit-name { font-size: 1.2rem; font-weight: 600; margin-bottom: 10px; }
.credit-amount { font-size: 1.5rem; font-weight: 700; }
.credit-bonus { color: var(--success); font-size: 0.9rem; margin-top: 5px; }
.credit-price { font-size: 1.3rem; font-weight: 600; color: var(--primary); margin-top: 10px; }

.current-credits {
    background: rgba(229, 57, 53, 0.2);
    padding: 15px 25px;
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 20px;
}

.custom-credit-box {
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
}

.custom-credit-box h3 { margin-bottom: 10px; }
.custom-credit-box > p { color: rgba(255,255,255,0.6); margin-bottom: 20px; }

.custom-input {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.custom-input input {
    width: 120px;
    padding: 12px;
    font-size: 1.2rem;
    text-align: center;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    color: white;
}

.custom-summary {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.7);
}

/* VIDEO CATEGORIES */
.video-categories { }

.video-category {
    background: rgba(255,255,255,0.03);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 20px;
}

.video-category h3 {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tier-badge {
    background: var(--primary);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
}

.video-list { }

.video-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background 0.3s;
}

.video-item:hover {
    background: rgba(255,255,255,0.08);
}

.video-icon { font-size: 1.5rem; }
.video-title { flex: 1; }
.video-duration { color: rgba(255,255,255,0.5); font-size: 0.9rem; }

.video-category.locked {
    opacity: 0.6;
}

.locked-message {
    text-align: center;
    padding: 30px;
    color: rgba(255,255,255,0.5);
}

.locked-message span { font-size: 2rem; }

/* PUBLIC VIDEOS */
.public-videos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.video-preview {
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    overflow: hidden;
}

.video-thumbnail {
    height: 180px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.video-preview h3 {
    padding: 20px 20px 10px;
}

.video-preview p {
    padding: 0 20px 20px;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.cta-box {
    text-align: center;
    background: rgba(229, 57, 53, 0.15);
    border: 2px solid var(--primary);
    border-radius: 20px;
    padding: 40px;
}

.cta-box h3 { margin-bottom: 20px; }

/* ═══════════════════════════════════════════════════════════════ */
/* MODALS */
/* ═══════════════════════════════════════════════════════════════ */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 2000;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--dark);
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    z-index: 2001;
    overflow: hidden;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-body {
    padding: 20px;
}

/* TOAST */
.toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 3000;
}

.toast {
    background: var(--dark);
    border-left: 4px solid var(--primary);
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    animation: slideIn 0.3s ease;
}

.toast.success { border-color: var(--success); }
.toast.error { border-color: var(--danger); }
.toast.warning { border-color: var(--warning); }

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

/* RESPONSIVE */
@media (max-width: 768px) {
    .panel-sidebar {
        display: none;
    }
    
    .panel-main {
        margin-left: 0;
    }
    
    .scan-row {
        grid-template-columns: 1fr;
    }
}
