/* MarkaSahne - Premium Dark Theme CSS */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #141414;
    --bg-card: #1a1a1a;
    --bg-hover: #222222;
    --gold: #c8a45c;
    --gold-light: #e8c96d;
    --gold-dark: #a07d3a;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --text-muted: #808080;
    --border-color: #2a2a2a;
    --red-live: #e50914;
    --sidebar-width: 80px;
    --header-height: 64px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: linear-gradient(180deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 100%);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px 0 24px;
    z-index: 1000;
    border-bottom: 1px solid rgba(200,164,92,0.1);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 18px;
    color: #000;
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-primary);
}

.logo-text .gold {
    color: var(--gold);
}

.main-nav {
    display: flex;
    gap: 28px;
}

.main-nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--text-primary);
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.search-btn {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    transition: var(--transition);
}

.search-btn:hover {
    color: var(--gold);
}

.btn-text {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 16px;
    transition: var(--transition);
}

.btn-text:hover {
    color: var(--text-primary);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(200,164,92,0.3);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
}

/* Sidebar */
.sidebar {
    position: fixed;
    left: 0;
    top: var(--header-height);
    bottom: 0;
    width: var(--sidebar-width);
    background: var(--bg-secondary);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    z-index: 900;
    overflow-y: auto;
}

.sidebar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 8px;
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 500;
    transition: var(--transition);
    text-align: center;
}

.sidebar-item i {
    font-size: 20px;
    margin-bottom: 2px;
}

.sidebar-item:hover {
    color: var(--text-primary);
    background: var(--bg-hover);
}

.sidebar-item.active {
    color: var(--gold);
    background: rgba(200,164,92,0.1);
    border-left: 3px solid var(--gold);
}

/* Main Content */
.main-content {
    margin-left: var(--sidebar-width);
    margin-top: var(--header-height);
    min-height: calc(100vh - var(--header-height));
}

/* Hero Section */
.hero-section {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 24px;
    padding: 24px;
    min-height: 450px;
}

.hero-slider {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-card);
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: none;
}

.hero-slide.active {
    display: block;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: #1a1a1a;
}

.hero-slide-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.hero-badge {
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 28px;
    max-width: 400px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
}

.btn-play {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: #000;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-play:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200,164,92,0.3);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.2);
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
}

.hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: var(--transition);
}

.hero-dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

/* Live Stream Box */
.live-box {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.live-box-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.live-badge {
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.live-indicator {
    width: 8px;
    height: 8px;
    background: var(--red-live);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.live-box-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.live-box-subtitle {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.live-thumbnail {
    width: 100%;
    border-radius: 8px;
    margin: 12px 0;
    aspect-ratio: 16/9;
    object-fit: cover;
    background: var(--bg-hover);
}

.live-tag {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--red-live);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 3px;
    text-transform: uppercase;
}

.live-thumbnail-wrapper {
    position: relative;
    margin: 12px 0;
}

.btn-live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: #000;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    margin-top: auto;
    transition: var(--transition);
    justify-content: center;
}

.btn-live:hover {
    background: var(--gold-light);
}

/* Content Sections */
.content-section {
    padding: 32px 24px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.section-title {
    font-size: 22px;
    font-weight: 700;
}

.section-nav {
    display: flex;
    gap: 8px;
}

.section-nav button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.section-nav button:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Program Cards Slider */
.cards-slider {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 8px;
    scrollbar-width: none;
}

.cards-slider::-webkit-scrollbar {
    display: none;
}

.program-card {
    flex: 0 0 220px;
    cursor: pointer;
    transition: var(--transition);
}

.program-card:hover {
    transform: translateY(-4px);
}

.program-card-image {
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    background: var(--bg-card);
    margin-bottom: 10px;
}

.program-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.program-card:hover .program-card-image img {
    transform: scale(1.05);
}

.program-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.program-card:hover .program-card-overlay {
    opacity: 1;
}

.program-card-overlay i {
    font-size: 36px;
    color: var(--gold);
}

.program-card-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.program-card-meta {
    font-size: 12px;
    color: var(--text-muted);
}

/* Special Content Cards */
.special-card {
    flex: 0 0 240px;
    cursor: pointer;
    transition: var(--transition);
}

.special-card:hover {
    transform: translateY(-4px);
}

.special-card-image {
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    background: var(--bg-card);
    margin-bottom: 10px;
    border: 1px solid var(--border-color);
}

.special-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.special-card-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.special-card-meta {
    font-size: 12px;
    color: var(--text-muted);
}

/* Features Section */
.features-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 40px 24px;
    border-top: 1px solid var(--border-color);
    margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(200,164,92,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 20px;
    color: var(--gold);
}

.feature-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.feature-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Footer */
.main-footer {
    margin-left: var(--sidebar-width);
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 48px 24px 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 12px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.footer-col a {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold);
    color: #000;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    margin-top: 32px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Auth Pages */
.auth-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - var(--header-height));
    padding: 40px;
}

.auth-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    width: 100%;
    max-width: 420px;
}

.auth-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.auth-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200,164,92,0.1);
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-1px);
}

.auth-link {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-muted);
}

.auth-link a {
    color: var(--gold);
    font-weight: 500;
}

.error-message {
    background: rgba(229,9,20,0.1);
    border: 1px solid rgba(229,9,20,0.3);
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 20px;
    font-size: 13px;
    color: #ff6b6b;
}

/* Programs Page */
.page-header {
    padding: 32px 24px 0;
}

.page-title {
    font-size: 28px;
    font-weight: 700;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    padding: 24px;
}

/* Watch Page */
.watch-container {
    padding: 24px;
}

.video-player {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    margin-bottom: 24px;
}

.video-player iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    margin-bottom: 32px;
}

.video-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.video-meta {
    font-size: 14px;
    color: var(--text-muted);
}

.episodes-list {
    display: grid;
    gap: 12px;
}

.episode-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: var(--bg-card);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.episode-item:hover {
    border-color: var(--gold);
    background: var(--bg-hover);
}

.episode-number {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-muted);
    min-width: 30px;
}

.episode-info h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.episode-info p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 24px;
}

.pagination a,
.pagination span {
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 14px;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    transition: var(--transition);
}

.pagination a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.pagination .active span {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

/* Placeholder images */
.placeholder-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-card), var(--bg-hover));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    padding: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr;
    }

    .live-box {
        display: none;
    }

    .features-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sidebar {
        display: none;
    }

    .main-content,
    .main-footer {
        margin-left: 0;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-slide-content {
        padding: 30px;
    }

    .features-section {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .program-card {
        flex: 0 0 160px;
    }

    .special-card {
        flex: 0 0 180px;
    }
}

@media (max-width: 480px) {
    .header-right .btn-text {
        display: none;
    }

    .hero-slide {
        min-height: 300px;
    }

    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* User Menu */
.user-menu {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}


/* ===== ENHANCED ANIMATIONS & EFFECTS ===== */

/* Smooth page transitions */
.main-content {
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero slide transitions */
.hero-slide {
    animation: slideIn 0.6s ease;
}

@keyframes slideIn {
    from { opacity: 0; transform: scale(1.02); }
    to { opacity: 1; transform: scale(1); }
}

/* Card hover animations */
.program-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.program-card:hover {
    transform: translateY(-8px) scale(1.02);
    z-index: 10;
}

.program-card:hover .program-card-image {
    box-shadow: 0 12px 40px rgba(200,164,92,0.2);
}

.special-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.special-card:hover {
    transform: translateY(-8px) scale(1.02);
    z-index: 10;
}

.special-card:hover .special-card-image {
    box-shadow: 0 12px 40px rgba(200,164,92,0.2);
    border-color: var(--gold);
}

/* Sidebar hover glow */
.sidebar-item {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.sidebar-item:hover {
    transform: translateX(3px);
}

.sidebar-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background: var(--gold);
    border-radius: 0 2px 2px 0;
}

/* Button glow effects */
.btn-play {
    position: relative;
    overflow: hidden;
}

.btn-play::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
    opacity: 0;
}

.btn-play:hover::after {
    opacity: 1;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

/* Gold glow on hover for gold buttons */
.btn-gold {
    position: relative;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    box-shadow: 0 0 20px rgba(200,164,92,0.4), 0 4px 15px rgba(200,164,92,0.3);
}

/* Live indicator enhanced pulse */
.live-indicator {
    box-shadow: 0 0 0 0 rgba(229,9,20,0.7);
    animation: livePulse 1.5s infinite;
}

@keyframes livePulse {
    0% { box-shadow: 0 0 0 0 rgba(229,9,20,0.7); }
    70% { box-shadow: 0 0 0 8px rgba(229,9,20,0); }
    100% { box-shadow: 0 0 0 0 rgba(229,9,20,0); }
}

/* Feature items hover */
.feature-item {
    transition: all 0.3s ease;
    border-radius: 12px;
}

.feature-item:hover {
    background: var(--bg-card);
    transform: translateY(-4px);
}

.feature-item:hover .feature-icon {
    background: rgba(200,164,92,0.2);
    transform: scale(1.1);
}

.feature-icon {
    transition: all 0.3s ease;
}

/* Episode item hover */
.episode-item {
    transition: all 0.3s ease;
}

.episode-item:hover {
    transform: translateX(8px);
    border-color: var(--gold);
}

/* Header scroll effect */
.main-header {
    transition: all 0.3s ease;
}

.main-header.scrolled {
    background: rgba(0,0,0,0.98);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

/* Search button animation */
.search-btn {
    transition: all 0.3s ease;
    text-decoration: none;
}

.search-btn:hover {
    color: var(--gold);
    transform: scale(1.1);
}

/* Smooth scrollbar for sliders */
.cards-slider {
    scroll-snap-type: x mandatory;
}

.program-card,
.special-card {
    scroll-snap-align: start;
}

/* Section nav buttons enhanced */
.section-nav button {
    transition: all 0.3s ease;
}

.section-nav button:hover {
    transform: scale(1.1);
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

/* Mobile sidebar animation */
.sidebar.mobile-open {
    display: flex !important;
    animation: slideInLeft 0.3s ease;
    position: fixed;
    width: 200px;
    z-index: 1100;
    background: var(--bg-secondary);
}

@keyframes slideInLeft {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

/* Logo hover */
.logo:hover .logo-icon {
    transform: rotate(5deg) scale(1.05);
    transition: all 0.3s ease;
}

.logo-icon {
    transition: all 0.3s ease;
}

/* Placeholder image gradient animation */
.placeholder-img {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


/* Footer PWA Button */
.pwa-footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--gold), #a07d3a);
    border: none;
    border-radius: 8px;
    color: #000;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(200,164,92,0.25);
}

.pwa-footer-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(200,164,92,0.4);
    background: linear-gradient(135deg, #e8c96d, var(--gold));
    color: #000;
}

.pwa-footer-btn i {
    font-size: 15px;
}


/* Theme Toggle Button */
.theme-toggle {
    background: none;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.theme-toggle:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Light Mode */
body.light-mode {
    --bg-primary: #f5f5f5;
    --bg-secondary: #ffffff;
    --bg-card: #ffffff;
    --bg-hover: #f0f0f0;
    --text-primary: #111111;
    --text-secondary: #555555;
    --text-muted: #888888;
    --border-color: #e0e0e0;
}

body.light-mode .main-header {
    background: rgba(255,255,255,0.95);
    border-bottom-color: #e0e0e0;
}

body.light-mode .sidebar {
    background: #fff;
    border-right-color: #e0e0e0;
}

body.light-mode .main-footer {
    background: #fff;
    border-top-color: #e0e0e0;
}

body.light-mode .program-card-title,
body.light-mode .special-card-title,
body.light-mode .section-title {
    color: #111;
}

body.light-mode .placeholder-img {
    background: #e8e8e8;
    color: #333;
}

body.light-mode .hero-slide-bg::after {
    background: linear-gradient(90deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.5) 40%, transparent 70%);
}

body.light-mode .hero-title {
    color: #111;
}

body.light-mode .hero-subtitle {
    color: #555;
}

body.light-mode .hero-badge {
    color: #a07d3a;
}

body.light-mode .feature-icon {
    background: rgba(200,164,92,0.15);
}

body.light-mode .mobile-bottom-nav {
    background: #fff;
    border-top-color: #e0e0e0;
}

body.light-mode .mobile-bottom-nav a {
    color: #888;
}

body.light-mode .mobile-bottom-nav a.active {
    color: #a07d3a;
}
