:root {
    --primary: #926ECC; /* Simbólyca Violet Accent */
    --primary-soft: rgba(146, 110, 204, 0.1);
    --secondary: #FFF9F2; /* Cream background */
    --accent: #E8AB9C; /* Rose / Soft Pink */
    --text-dark: #1A1A1A;
    --text-muted: #666666;
    --white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow: 0 10px 30px rgba(0,0,0,0.05);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--secondary);
    color: var(--text-dark);
    line-height: 1.6;
}

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

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

/* Background Elegante */
.bg-simbolyca {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        radial-gradient(circle at 10% 20%, rgba(146, 110, 204, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(146, 110, 204, 0.05) 0%, transparent 50%);
}

/* Auth Section */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.auth-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 3.5rem;
    border-radius: 32px;
    width: 100%;
    max-width: 480px;
    box-shadow: var(--shadow);
    text-align: center;
}

.auth-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

.auth-subtitle {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    background: var(--white);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-soft);
}

/* === SISTEMA DE BOTÕES (SIMBÓLYCA LUXURY) === */
button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 10px 20px rgba(146, 110, 204, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(146, 110, 204, 0.4);
    filter: brightness(1.1);
}

.btn-secondary {
    background: rgba(146, 110, 204, 0.05);
    color: var(--primary);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s;
    border: 1px solid rgba(146, 110, 204, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.btn-secondary:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-2px);
}

.btn-gold {
    background: linear-gradient(135deg, #926ECC 0%, #B193DC 50%, #6A4C9C 100%);
    color: #000;
    padding: 1.2rem 2.5rem;
    border-radius: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 25px rgba(106, 76, 156, 0.4);
    transition: all 0.4s;
}

.btn-gold:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(106, 76, 156, 0.5);
}

.btn-outline-gold {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 0.9rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-outline-gold:hover {
    background: var(--primary);
    color: #000;
}

/* Botões de Ação Menores (Listas) */
.btn-action-small {
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    border: 1px solid rgba(146, 110, 204, 0.15);
    background: rgba(146, 110, 204, 0.05);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    backdrop-filter: blur(5px);
}

.btn-action-small:hover {
    background: var(--primary);
    color: #000 !important;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(146, 110, 204, 0.25);
}

/* Botões de Decisão (Curadoria) */
.btn-approve {
    background: rgba(49, 151, 149, 0.08);
    color: #319795;
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    border: 1px solid rgba(49, 151, 149, 0.15);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-approve:hover {
    background: #319795;
    color: white !important;
    border-color: #319795;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(49, 151, 149, 0.2);
}

.btn-reject {
    background: rgba(197, 48, 48, 0.08);
    color: #C53030;
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    border: 1px solid rgba(197, 48, 48, 0.15);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-reject:hover {
    background: #C53030;
    color: white !important;
    border-color: #C53030;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 48, 48, 0.2);
}

/* Chips de Filtro (Vitrine) */
.chip {
    padding: 0.6rem 1.4rem;
    border-radius: 100px;
    background: var(--white);
    border: 1px solid #eee;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
    cursor: pointer;
}

.chip:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(146, 110, 204, 0.05);
}

.chip.active {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(146, 110, 204, 0.2);
}

/* CTA WhatsApp (Vitrine) */
.btn-cta {
    background: #25D366; /* WhatsApp Green mas com toque premium se possível, via sombra */
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.4);
    filter: brightness(1.1);
}

/* Botão de Logout (Sidebar) */
.btn-logout {
    width: 100%;
    padding: 1rem;
    border-radius: 14px;
    background: rgba(197, 48, 48, 0.05);
    color: #C53030;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s;
    border: 1px solid rgba(197, 48, 48, 0.1);
}

.btn-logout:hover {
    background: #C53030;
    color: white;
    transform: translateX(5px);
}

/* Reset de botões padrão */
button {
    font-family: inherit;
    outline: none;
}

/* Dashboard Layout */
.dashboard-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 100vh;
}

.sidebar {
    background: var(--white);
    border-right: 1px solid #E5E7EB;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 10;
}

.sidebar-back-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.825rem;
    margin-bottom: 1.5rem;
    transition: all 0.2s ease;
}

.sidebar-back-link:hover {
    color: var(--primary);
}

.sidebar-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin: 1.5rem 0 0.75rem 1rem;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.btn-sidebar {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    color: #4B5563; /* Gray-600 */
    text-decoration: none !important;
    font-weight: 500;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 14px;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
    border: 1px solid transparent;
}

.btn-sidebar i {
    font-size: 1.25rem;
    color: #9CA3AF; /* Gray-400 */
    transition: all 0.25s ease;
}

.btn-sidebar:hover {
    background: #1F2937;
    color: var(--white);
}

.btn-sidebar:hover i {
    color: var(--primary);
    transform: scale(1.1);
}

.btn-sidebar.active {
    background: #111827; /* Dark background */
    color: var(--white);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-sidebar.active i {
    color: var(--primary);
}

/* Auth Section Reset for Sidebar Link */
.sidebar a {
    text-decoration: none;
    color: inherit;
}

.sidebar-footer {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid #F3F4F6;
}

.btn-logout {
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-family: inherit;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0.75rem 1rem;
    width: 100%;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.btn-logout:hover {
    background: #FEF2F2;
    color: #EF4444;
}

.main-content {
    padding: 3rem 4rem;
    overflow-y: auto;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

/* Form Styles */
.form-card {
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.upload-area {
    border: 2px dashed #E5E7EB;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.upload-area:hover {
    border-color: var(--primary);
    background: var(--primary-soft);
}

.upload-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Moderation Styles */
.moderation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

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

.product-img {
    height: 240px;
    background: #F3F4F6;
    background-size: cover;
    background-position: center;
}

.product-details {
    padding: 1.5rem;
}

.badge {
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-pending { background: #FEF3C7; color: #92400E; }
.badge-approved { background: #D1FAE5; color: #065F46; }

.card-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.btn-approve {
    flex: 1;
    background: #10B981;
    color: white;
    border: none;
    padding: 0.6rem;
    border-radius: 8px;
    cursor: pointer;
}

.btn-reject {
    flex: 1;
    background: #EF4444;
    color: white;
    border: none;
    padding: 0.6rem;
    border-radius: 8px;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .dashboard-layout { grid-template-columns: 1fr; }
    .sidebar { display: none; }
}

/* Modal UI */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 40px;
    width: 90%;
    max-width: 440px; /* Reduzi para ficar mais compacto */
    max-height: 85vh; /* Limite de altura mais seguro */
    overflow-y: auto;
    position: relative;
    box-shadow: 0 40px 100px rgba(0,0,0,0.2);
    scrollbar-width: thin;
    scrollbar-color: var(--primary) transparent;
}


/* Container específico para centralizar o card no meio do modal */
.preview-container {
    display: flex;
    justify-content: center;
    padding: 1rem 0;
}

.preview-container .public-card-mockup {
    width: 100%;
    max-width: 360px; /* Card não precisa ser gigante no preview */
    margin: 0 auto;
}

/* Ajuste de Padding para Mobile */
@media (max-width: 600px) {
    .modal-content {
        padding: 2rem 1.5rem;
    }
}

.btn-close-modal {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: #F3F4F6;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

/* Public Card Look (Pinterest/Clean-Shop Style) */
.public-card-mockup {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 1px solid #F3F4F6;
}

.card-hero {
    width: 100%;
    aspect-ratio: 4 / 5; /* Altura maior para o estilo Pinterest */
    background: #F9FAFB;
    background-size: cover;
    background-position: center;
}

.card-body {
    padding: 1.75rem;
}

.card-body h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.card-body p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.25rem;
    border-top: 1px solid #F3F4F6;
}

.category-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
}

.btn-cta {
    background: #25D366; /* WhatsApp Green */
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 100px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

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

/* Public Showcase Specific Styles */
.public-header {
    padding: 6rem 0 4rem;
    position: relative;
    z-index: 10;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 4rem;
}

.search-filter-bar {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.search-input-wrapper {
    position: relative;
    width: 100%;
}

.search-input-wrapper i {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.25rem;
}

.search-input-wrapper input {
    width: 100%;
    padding: 1.25rem 1.5rem 1.25rem 3.5rem;
    border-radius: 16px;
    border: 1px solid #F3F4F6;
    background: #F9FAFB;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-input-wrapper input:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px var(--primary-soft);
}

.filter-chips {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.chip {
    padding: 0.6rem 1.25rem;
    border-radius: 100px;
    border: 1px solid #E5E7EB;
    background: var(--white);
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.chip:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.chip.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(146, 110, 204, 0.3);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    padding-bottom: 8rem;
}

.public-card-mockup:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.public-footer {
    padding: 4rem 2rem;
    text-align: center;
    border-top: 1px solid #F3F4F6;
    background: var(--white);
}

.public-footer p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Floating Back Button */
.btn-back-hub-floating {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--white);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    z-index: 100;
}

.btn-back-hub-floating:hover {
    transform: scale(1.05);
    background: var(--text-dark);
    color: var(--white);
}

@media (max-width: 768px) {
    .container-wide { padding: 0 1.5rem; }
    .showcase-grid { grid-template-columns: 1fr; }
    .search-filter-bar { padding: 1rem; }
}

/* === Trilhas do Clube (Premium LXP Experience) === */
.lxp-section {
    margin-bottom: 4rem;
    animation: fadeIn 0.8s ease forwards;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
}

.section-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

.view-all {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.2rem;
    transition: transform 0.3s ease;
}

.view-all:hover {
    transform: translateX(5px);
}

/* Hero Banner */
.club-hero {
    width: 100%;
    height: 480px;
    border-radius: 40px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    padding: 4rem;
    margin-bottom: 4rem;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

.hero-content {
    max-width: 600px;
    z-index: 2;
    color: white;
}

.hero-badge {
    background: var(--primary);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(146, 110, 204, 0.4);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

.btn-hero-primary {
    background: var(--white);
    color: var(--text-dark);
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-hero-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255,255,255,0.2);
}

.btn-hero-outline {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1.2rem 2.5rem;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: white;
}

/* Horizontal Scroll Section */
.horizontal-scroll {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 0 2rem 0;
    scrollbar-width: none; /* Firefox */
}

.horizontal-scroll::-webkit-scrollbar { display: none; }

.lesson-small-card {
    min-width: 320px;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    cursor: pointer;
    border: 1px solid #F3F4F6;
}

.lesson-small-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.lesson-small-card .thumb {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.3);
}

.progress {
    height: 100%;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

.lesson-small-card .info {
    padding: 1.5rem;
}

.lesson-small-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.lesson-small-card span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Premium Grid & Cards */
.lessons-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 3rem;
}

.trail-premium-card {
    background: var(--white);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    border: 1px solid #F3F4F6;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.trail-premium-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.12);
    border-color: var(--primary-soft);
}

.card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.8s ease;
}

.trail-premium-card:hover .card-image {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.4));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.trail-premium-card:hover .card-overlay {
    opacity: 1;
}

.category-tag {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.3);
}

.card-play-btn {
    align-self: center;
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transform: scale(0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.trail-premium-card:hover .card-play-btn {
    transform: scale(1);
}

.card-content-premium {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-content-premium h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.card-content-premium p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.card-footer-premium {
    margin-top: auto;
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.card-footer-premium span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-footer-premium i {
    color: var(--primary);
    font-size: 1.2rem;
}

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

@media (max-width: 1200px) {
    .club-hero { height: 400px; padding: 3rem; }
    .hero-title { font-size: 2.8rem; }
}

@media (max-width: 768px) {
    .club-hero { height: auto; flex-direction: column; padding: 2.5rem; text-align: center; }
    .hero-content { max-width: 100%; }
    .hero-actions { justify-content: center; flex-direction: column; }
    .lessons-grid-premium { grid-template-columns: 1fr; }
    .lesson-small-card { min-width: 280px; }
}


/* === Admin Premium Forms === */
.admin-card-glass {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 32px;
    padding: 3rem;
    box-shadow: 0 40px 100px rgba(0,0,0,0.05);
}

.admin-form-label {
    display: block;
    font-size: 0.825rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.admin-input-luxury {
    width: 100%;
    background: #F9FAFB;
    border: 1.5px solid #F3F4F6;
    border-radius: 16px;
    padding: 1.25rem;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.admin-input-luxury:focus {
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-soft);
    outline: none;
}

.admin-upload-luxury {
    border: 2px dashed #E5E7EB;
    border-radius: 24px;
    padding: 3rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.admin-upload-luxury:hover {
    border-color: var(--primary);
    background: var(--primary-soft);
}

.admin-upload-luxury i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: inline-block;
}

.admin-submit-luxury {
    background: var(--text-dark);
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
}

.admin-submit-luxury:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    background: #000;
}
