/* ============================================================
   UTKARSH HUB — Complete Design System
   Premium Black + Dark Gray + Yellow Theme
   ============================================================ */

/* ----- RESET & BASE ----- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background 0.5s ease, color 0.5s ease;
}

img, video, iframe, embed {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
    transition: all 0.3s ease;
}

button:focus-visible, a:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ----- CSS VARIABLES (DARK THEME — DEFAULT) ----- */
:root {
    /* Backgrounds */
    --bg: #050505;
    --bg2: #0a0a0a;
    --card: #141414;
    --card2: #1a1a1a;
    --card-hover: #1f1f1f;

    /* Accent */
    --accent: #ffd700;
    --accent2: #e6c200;
    --accent-glow: rgba(255, 215, 0, 0.3);
    --accent-glow-soft: rgba(255, 215, 0, 0.12);

    /* Text */
    --text: #ffffff;
    --text2: #b0b0b0;
    --text3: #707070;

    /* Borders */
    --border: #262626;
    --border-light: #333333;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.4);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.5);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.6);
    --shadow-accent: 0 0 30px rgba(255,215,0,0.15);

    /* Glass */
    --glass: rgba(20, 20, 20, 0.85);
    --glass-border: rgba(255, 255, 255, 0.06);

    /* Gradient */
    --gradient-hero: radial-gradient(ellipse at 50% 0%, rgba(255,215,0,0.08) 0%, transparent 60%);
    --gradient-card: linear-gradient(180deg, rgba(255,215,0,0.03) 0%, transparent 100%);

    /* Sizes */
    --header-height: 72px;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 50px;
}

/* ----- LIGHT THEME ----- */
[data-theme="light"] {
    --bg: #f5f5f5;
    --bg2: #fafafa;
    --card: #ffffff;
    --card2: #f8f8f8;
    --card-hover: #f0f0f0;

    --accent: #d4a800;
    --accent2: #c49a00;
    --accent-glow: rgba(212, 168, 0, 0.25);
    --accent-glow-soft: rgba(212, 168, 0, 0.08);

    --text: #1a1a1a;
    --text2: #555555;
    --text3: #999999;

    --border: #e0e0e0;
    --border-light: #e8e8e8;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.08);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.1);
    --shadow-accent: 0 0 30px rgba(212,168,0,0.1);

    --glass: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(0, 0, 0, 0.08);

    --gradient-hero: radial-gradient(ellipse at 50% 0%, rgba(212,168,0,0.06) 0%, transparent 60%);
    --gradient-card: linear-gradient(180deg, rgba(212,168,0,0.02) 0%, transparent 100%);
}

/* ----- REDUCED MOTION ----- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    transition: background 0.5s ease, border-color 0.5s ease;
}

.header-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
    flex-shrink: 0;
}

.logo-box {
    width: 44px;
    height: 44px;
    background: var(--accent);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 900;
    border-radius: var(--radius-sm);
    font-family: 'Playfair Display', serif;
    transition: box-shadow 0.3s ease;
    box-shadow: 0 0 20px var(--accent-glow);
}

.logo-box.small {
    width: 36px;
    height: 36px;
    font-size: 20px;
}

.logo:hover .logo-box {
    box-shadow: 0 0 30px var(--accent-glow);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.utkarsh {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text);
}

.hub {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--accent);
    text-transform: uppercase;
}

/* Desktop Nav */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.desktop-nav a {
    position: relative;
    color: var(--text2);
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-full);
    transition: color 0.3s ease, background 0.3s ease;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
    color: var(--accent);
    background: var(--accent-glow-soft);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
    transform: translateX(-50%) scaleX(1);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.theme-toggle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--card);
    color: var(--accent);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    background: var(--accent-glow-soft);
    border-color: var(--accent);
    transform: rotate(15deg);
}

.hamburger {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--card);
    color: var(--accent);
    font-size: 1.2rem;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: var(--accent-glow-soft);
    border-color: var(--accent);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: var(--card2);
    border-left: 1px solid var(--border);
    z-index: 9999;
    padding: 24px;
    transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.mobile-menu-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
}

.mobile-close-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--card);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.mobile-close-btn:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu nav a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    color: var(--text2);
    font-size: 16px;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.mobile-menu nav a i {
    width: 24px;
    text-align: center;
    color: var(--accent);
    font-size: 1.1rem;
}

.mobile-menu nav a:hover,
.mobile-menu nav a:focus-visible {
    background: var(--accent-glow-soft);
    color: var(--accent);
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu.active ~ .mobile-overlay,
.mobile-menu.active + .mobile-overlay {
    opacity: 1;
    visibility: visible;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
    background: var(--bg);
    background-image: var(--gradient-hero);
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: var(--accent-glow-soft);
    animation: floatCircle 15s ease-in-out infinite;
}

.floating-circle.c1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.floating-circle.c2 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    right: -50px;
    animation-delay: -4s;
    background: rgba(255, 215, 0, 0.05);
}

.floating-circle.c3 {
    width: 150px;
    height: 150px;
    top: 40%;
    left: 10%;
    animation-delay: -8s;
    background: rgba(255, 215, 0, 0.04);
}

.floating-circle.c4 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 40%;
    animation-delay: -12s;
    background: rgba(255, 215, 0, 0.06);
}

@keyframes floatCircle {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -40px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(40px, 30px) scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-glow-soft);
    color: var(--accent);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    border: 1px solid var(--accent-glow);
    margin-bottom: 32px;
    animation-delay: 0.15s;
}

.hero-badge i {
    font-size: 0.9rem;
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
    animation-delay: 0.3s;
}

.hero-title .accent {
    color: var(--accent);
    text-shadow: 0 0 40px var(--accent-glow);
    position: relative;
}

.hero-desc {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text2);
    max-width: 680px;
    margin: 0 auto 40px;
    line-height: 1.8;
    animation-delay: 0.45s;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    animation-delay: 0.6s;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-icon {
    font-size: 2.2rem;
    color: var(--accent);
    display: block;
    margin-bottom: 12px;
    filter: drop-shadow(0 0 12px var(--accent-glow));
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--accent);
    margin-bottom: 12px;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    background: var(--accent-glow-soft);
    border: 1px solid var(--accent-glow);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text2);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-desc .fa-quote-left,
.section-desc .fa-quote-right {
    font-size: 0.8rem;
    opacity: 0.5;
    margin: 0 6px;
}

/* Welcome Section */
.welcome {
    padding: 80px 0;
    background: var(--bg2);
}

.welcome .section-title {
    margin-bottom: 8px;
}

/* Quick Links */
.quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--card);
    color: var(--accent);
    border: 2px solid var(--border);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.quick-link i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.quick-link:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px var(--accent-glow);
}

.quick-link:hover i {
    transform: scale(1.2);
}

/* ============================================================
   RESOURCES GRID
   ============================================================ */
.resources-section {
    background: var(--bg);
}

.resources-section:nth-child(even) {
    background: var(--bg2);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}

/* ============================================================
   RESOURCE CARDS
   ============================================================ */
.resource-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    will-change: transform;
    background-image: var(--gradient-card);
}

.resource-card:hover {
    transform: translateY(-12px);
    border-color: var(--accent);
    box-shadow: 0 20px 60px var(--accent-glow), 0 0 0 1px var(--accent-glow);
}

/* Card Media Preview */
.card-preview {
    width: 100%;
    height: 200px;
    background: var(--bg);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-preview video,
.card-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.resource-card:hover .card-preview video,
.resource-card:hover .card-preview img {
    transform: scale(1.08);
}

.card-preview-icon {
    font-size: 3.5rem;
    color: var(--accent);
    opacity: 0.6;
    filter: drop-shadow(0 0 20px var(--accent-glow));
}

/* Checkerboard for PNG */
.card-preview.checkerboard {
    background-image:
        linear-gradient(45deg, #1a1a1a 25%, transparent 25%),
        linear-gradient(-45deg, #1a1a1a 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #1a1a1a 75%),
        linear-gradient(-45deg, transparent 75%, #1a1a1a 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

[data-theme="light"] .card-preview.checkerboard {
    background-image:
        linear-gradient(45deg, #e0e0e0 25%, transparent 25%),
        linear-gradient(-45deg, #e0e0e0 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #e0e0e0 75%),
        linear-gradient(-45deg, transparent 75%, #e0e0e0 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

.card-preview img[style*="contain"],
.card-preview img.object-contain {
    object-fit: contain !important;
    padding: 16px;
}

/* Card Body */
.card-body {
    padding: 24px;
}

.card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.3;
}

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text3);
    background: var(--bg);
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.card-meta i {
    color: var(--accent);
    font-size: 0.8rem;
}

.card-actions {
    display: flex;
    gap: 12px;
}

.card-actions .btn-primary,
.card-actions .btn-secondary {
    flex: 1;
    justify-content: center;
    text-align: center;
}

/* ============================================================
   BUTTON SYSTEM
   ============================================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: #000;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 700;
    border: 2px solid var(--accent);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 4px 20px var(--accent-glow);
    text-decoration: none;
    letter-spacing: 0.3px;
}

.btn-primary:hover {
    background: var(--accent2);
    border-color: var(--accent2);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 35px var(--accent-glow);
}

.btn-primary:active {
    transform: translateY(0) scale(0.97);
    box-shadow: 0 2px 10px var(--accent-glow);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 17px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--text);
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 600;
    border: 2px solid var(--border-light);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    text-decoration: none;
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-glow-soft);
    transform: translateY(-3px);
}

.btn-secondary:active {
    transform: translateY(0) scale(0.97);
}

/* ============================================================
   EMPTY STATE
   ============================================================ */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    background: var(--card);
    border-radius: var(--radius-lg);
    border: 2px dashed var(--border);
}

.empty-state i {
    font-size: 4rem;
    color: var(--accent);
    opacity: 0.4;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px var(--accent-glow));
}

.empty-state h3 {
    font-size: 1.5rem;
    color: var(--text2);
    margin-bottom: 10px;
    font-weight: 600;
}

.empty-state p {
    color: var(--text3);
    font-size: 1rem;
}

/* ============================================================
   PREVIEW MODAL
   ============================================================ */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 5000;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    background: var(--card2);
    max-width: 960px;
    width: 100%;
    max-height: 90vh;
    border-radius: var(--radius-lg);
    border: 1px solid var(--accent-glow);
    box-shadow: 0 24px 80px rgba(0,0,0,0.7), 0 0 60px var(--accent-glow);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1;
}

/* Modal Header */
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 24px 28px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}

.modal-header-info {
    flex: 1;
    min-width: 0;
    padding-right: 16px;
}

.modal-category {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 6px;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    background: var(--accent-glow-soft);
    border: 1px solid var(--accent-glow);
}

.modal-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
    word-break: break-word;
}

.modal-close {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--card);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    border: 1px solid var(--border);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #ff3333;
    color: #fff;
    border-color: #ff3333;
    transform: rotate(90deg);
}

/* Modal Body */
.modal-body {
    flex: 1;
    overflow: auto;
    padding: 24px 28px;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
}

.modal-body video {
    width: 100%;
    max-height: 65vh;
    border-radius: var(--radius-md);
    background: #000;
}

.modal-body img {
    max-width: 100%;
    max-height: 65vh;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.modal-body img.checkerboard-bg {
    background-image:
        linear-gradient(45deg, #1a1a1a 25%, transparent 25%),
        linear-gradient(-45deg, #1a1a1a 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #1a1a1a 75%),
        linear-gradient(-45deg, transparent 75%, #1a1a1a 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

[data-theme="light"] .modal-body img.checkerboard-bg {
    background-image:
        linear-gradient(45deg, #ddd 25%, transparent 25%),
        linear-gradient(-45deg, #ddd 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #ddd 75%),
        linear-gradient(-45deg, transparent 75%, #ddd 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

.modal-body audio {
    width: 100%;
    max-width: 600px;
    border-radius: var(--radius-sm);
}

.modal-body iframe,
.modal-body embed {
    width: 100%;
    height: 65vh;
    border: none;
    border-radius: var(--radius-md);
}

/* Modal Footer */
.modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px 28px;
    border-top: 1px solid var(--border);
    flex-shrink: 0;
}

.modal-file-info {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.modal-file-info span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text2);
    padding: 6px 14px;
    background: var(--card);
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
}

.modal-file-info i {
    color: var(--accent);
}

.modal-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Modal Animation */
@keyframes modalSlideUp {
    from { opacity: 0; transform: translateY(40px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.animate-modal {
    animation: modalSlideUp 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================================
   TOAST NOTIFICATION
   ============================================================ */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--card2);
    color: var(--text);
    padding: 16px 32px;
    border-radius: var(--radius-full);
    border: 1px solid var(--accent-glow);
    box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 30px var(--accent-glow);
    z-index: 9999;
    display: none;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    max-width: 90vw;
    gap: 10px;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.toast.show {
    display: flex;
    animation: toastIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.toast.hide {
    animation: toastOut 0.3s ease forwards;
}

.toast i {
    color: var(--accent);
    font-size: 1.1rem;
}

@keyframes toastIn {
    from { opacity: 0; transform: translateX(-50%) translateY(30px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@keyframes toastOut {
    from { opacity: 1; transform: translateX(-50%) translateY(0); }
    to { opacity: 0; transform: translateX(-50%) translateY(-20px); }
}

/* ============================================================
   NEWS TICKER
   ============================================================ */
.news-section {
    background: var(--bg2);
}

.ticker-wrapper {
    max-width: 100%;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--card);
    border: 1px solid var(--border);
}

.ticker {
    padding: 18px 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-content {
    display: inline-flex;
    gap: 0;
    animation: tickerScroll 50s linear infinite;
    will-change: transform;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 40px;
    font-size: 15px;
    color: var(--text2);
    white-space: nowrap;
}

.ticker-item i {
    color: var(--accent);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.ticker-item .ticker-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    box-shadow: 0 0 10px var(--accent-glow);
}

.ticker:hover .ticker-content {
    animation-play-state: paused;
}

@keyframes tickerScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--bg2);
    padding: 80px 0 0;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 3px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-text {
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: 0.5px;
}

.footer-about {
    color: var(--text2);
    font-size: 15px;
    line-height: 1.8;
    max-width: 360px;
}

.footer-connect-text {
    color: var(--text2);
    font-size: 14px;
    margin-bottom: 20px;
}

.footer-col nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text2);
    font-size: 14px;
    font-weight: 500;
    padding: 6px 0;
    transition: all 0.3s ease;
}

.footer-col nav a i {
    font-size: 10px;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.footer-col nav a:hover {
    color: var(--accent);
    padding-left: 6px;
}

.footer-col nav a:hover i {
    transform: translateX(4px);
}

/* Social Links */
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.3rem;
    color: var(--text2);
    background: var(--card);
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.social-link:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
    border-color: transparent;
}

.social-link.telegram:hover {
    background: #0088cc;
    color: #fff;
    border-color: transparent;
}

.social-link.whatsapp:hover {
    background: #25D366;
    color: #fff;
    border-color: transparent;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 24px 0;
    text-align: center;
    font-size: 14px;
    color: var(--text3);
}

.footer-bottom strong {
    color: var(--accent);
}

.footer-bottom .fa-heart {
    color: #ff3333;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.animate-fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.animate-scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.animate-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Delay utilities */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* ============================================================
   PAGE LOADER — Progress Bar
   ============================================================ */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 10000;
    background: transparent;
}

.page-loader::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--accent), #fff, var(--accent));
    animation: pageLoadProgress 1.5s ease-in-out forwards;
    border-radius: 2px;
    box-shadow: 0 0 20px var(--accent-glow);
}

@keyframes pageLoadProgress {
    0% { width: 0%; }
    30% { width: 30%; }
    60% { width: 65%; }
    85% { width: 85%; }
    100% { width: 100%; }
}

/* ============================================================
   STAGGERED CARD ENTRANCE ANIMATION
   ============================================================ */
@keyframes cardEntrance {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ============================================================
   3D TILT EFFECT ON CARDS
   ============================================================ */
.resource-card {
    perspective: 1000px;
    transform-style: preserve-3d;
}

.resource-card .card-body {
    transform: translateZ(20px);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.resource-card:hover .card-body {
    transform: translateZ(30px);
}

.resource-card .card-preview {
    transform: translateZ(0);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.resource-card:hover .card-preview {
    transform: translateZ(10px) scale(1.02);
}

/* ============================================================
   GLOW BORDER ANIMATION ON CARDS
   ============================================================ */
.resource-card {
    position: relative;
    isolation: isolate;
}

.resource-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-lg);
    background: conic-gradient(
        var(--accent), 
        transparent 30%, 
        transparent 60%, 
        var(--accent) 80%, 
        var(--accent)
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    animation: glowRotate 3s linear infinite;
}

.resource-card:hover::before {
    opacity: 0.8;
}

.resource-card:hover {
    border-color: transparent;
}

@keyframes glowRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ============================================================
   MAGNETIC HOVER EFFECT ON BUTTONS
   ============================================================ */
.btn-primary, .btn-secondary, .quick-link, .social-link {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-primary::before, .btn-secondary::before, .quick-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.15);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    pointer-events: none;
}

.btn-primary:hover::before, .btn-secondary:hover::before, .quick-link:hover::before {
    width: 300px;
    height: 300px;
}

/* ============================================================
   SPARKLE PARTICLES IN HERO
   ============================================================ */
.hero-bg-effects {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    animation: sparkleFloat 4s ease-in-out infinite;
    box-shadow: 0 0 6px var(--accent), 0 0 12px var(--accent-glow);
    opacity: 0;
}

.sparkle:nth-child(1) { top: 15%; left: 20%; animation-delay: 0s; }
.sparkle:nth-child(2) { top: 35%; left: 80%; animation-delay: 0.8s; width: 3px; height: 3px; }
.sparkle:nth-child(3) { top: 60%; left: 10%; animation-delay: 1.6s; width: 5px; height: 5px; }
.sparkle:nth-child(4) { top: 75%; left: 70%; animation-delay: 2.4s; width: 3px; height: 3px; }
.sparkle:nth-child(5) { top: 20%; left: 55%; animation-delay: 3.2s; width: 4px; height: 4px; }
.sparkle:nth-child(6) { top: 50%; left: 45%; animation-delay: 0.4s; width: 6px; height: 6px; }
.sparkle:nth-child(7) { top: 85%; left: 30%; animation-delay: 1.2s; width: 3px; height: 3px; }
.sparkle:nth-child(8) { top: 10%; left: 90%; animation-delay: 2s; width: 5px; height: 5px; }
.sparkle:nth-child(9) { top: 45%; left: 5%; animation-delay: 2.8s; width: 4px; height: 4px; }
.sparkle:nth-child(10) { top: 70%; left: 88%; animation-delay: 3.6s; width: 3px; height: 3px; }

@keyframes sparkleFloat {
    0%, 100% { 
        opacity: 0; 
        transform: translateY(0) scale(0);
    }
    50% { 
        opacity: 0.8; 
        transform: translateY(-30px) scale(1);
    }
}

/* ============================================================
   AUDIO WAVE VISUALIZER
   ============================================================ */
.audio-wave {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 60px;
    margin: 20px 0;
}

.audio-wave-bar {
    width: 6px;
    height: 20px;
    background: var(--accent);
    border-radius: 3px;
    animation: waveAnim 1.2s ease-in-out infinite;
    opacity: 0.6;
}

.audio-wave-bar:nth-child(1) { animation-delay: 0s; height: 15px; }
.audio-wave-bar:nth-child(2) { animation-delay: 0.1s; height: 25px; }
.audio-wave-bar:nth-child(3) { animation-delay: 0.2s; height: 35px; }
.audio-wave-bar:nth-child(4) { animation-delay: 0.3s; height: 45px; }
.audio-wave-bar:nth-child(5) { animation-delay: 0.4s; height: 50px; }
.audio-wave-bar:nth-child(6) { animation-delay: 0.5s; height: 45px; }
.audio-wave-bar:nth-child(7) { animation-delay: 0.6s; height: 35px; }
.audio-wave-bar:nth-child(8) { animation-delay: 0.7s; height: 25px; }
.audio-wave-bar:nth-child(9) { animation-delay: 0.8s; height: 15px; }

@keyframes waveAnim {
    0%, 100% { 
        transform: scaleY(1); 
        background: var(--accent);
        box-shadow: 0 0 8px var(--accent-glow);
    }
    50% { 
        transform: scaleY(1.8); 
        background: #fff;
        box-shadow: 0 0 16px var(--accent-glow);
    }
}

/* ============================================================
   STATS FLIP CARD ANIMATION
   ============================================================ */
.stat-card {
    perspective: 800px;
}

.stat-card:hover .stat-icon {
    animation: iconFlip 0.6s ease;
}

@keyframes iconFlip {
    0% { transform: rotateY(0deg); }
    50% { transform: rotateY(180deg) scale(1.2); }
    100% { transform: rotateY(360deg); }
}

/* ============================================================
   SECTION REVEAL ANIMATION (JS-controlled)
   ============================================================ */
.section {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.section.section-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   SEARCH BAR
   ============================================================ */
.search-wrapper {
    position: relative;
    max-width: 500px;
    margin: 0 auto 36px;
}

.search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text3);
    font-size: 1rem;
    pointer-events: none;
    transition: color 0.3s ease;
}

.search-input {
    width: 100%;
    padding: 14px 18px 14px 48px;
    background: var(--card);
    color: var(--text);
    border: 2px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 15px;
    font-family: inherit;
    font-weight: 500;
    outline: none;
    transition: all 0.3s ease;
}

.search-input::placeholder {
    color: var(--text3);
    font-weight: 400;
}

.search-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-glow-soft), 0 0 30px var(--accent-glow);
    background: var(--card2);
}

.search-input:focus ~ .search-icon,
.search-wrapper:focus-within .search-icon {
    color: var(--accent);
}

/* ============================================================
   SKELETON LOADER
   ============================================================ */
.skeleton-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    animation: skeletonPulse 1.5s ease-in-out infinite;
}

.skeleton-preview {
    width: 100%;
    height: 200px;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.skeleton-preview::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,215,0,0.04), transparent);
    animation: skeletonShimmer 1.5s infinite;
}

.skeleton-body {
    padding: 24px;
}

.skeleton-line {
    height: 16px;
    background: var(--bg);
    border-radius: 8px;
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
}

.skeleton-line::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,215,0,0.04), transparent);
    animation: skeletonShimmer 1.5s infinite;
}

.skeleton-line.w-80 { width: 80%; }
.skeleton-line.w-60 { width: 60%; }
.skeleton-line.w-40 { width: 40%; }

.skeleton-buttons {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.skeleton-btn {
    flex: 1;
    height: 44px;
    background: var(--bg);
    border-radius: var(--radius-full);
    position: relative;
    overflow: hidden;
}

.skeleton-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,215,0,0.04), transparent);
    animation: skeletonShimmer 1.5s infinite;
}

@keyframes skeletonPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes skeletonShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* ============================================================
   VFX HOVER PLAY OVERLAY
   ============================================================ */
.vfx-preview {
    position: relative;
    cursor: pointer;
}

.vfx-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.vfx-play-overlay i {
    font-size: 3.5rem;
    color: var(--accent);
    filter: drop-shadow(0 0 30px var(--accent-glow));
    animation: playPulse 2s ease-in-out infinite;
}

.resource-card:hover .vfx-play-overlay {
    opacity: 1;
}

@keyframes playPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.15); opacity: 1; }
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
    padding: 60px 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    text-align: center;
    padding: 32px 20px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-glow);
    box-shadow: 0 12px 40px var(--accent-glow);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-icon {
    font-size: 2.2rem;
    color: var(--accent);
    margin-bottom: 12px;
    filter: drop-shadow(0 0 15px var(--accent-glow));
}

.stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1.1;
    margin-bottom: 6px;
    font-variant-numeric: tabular-nums;
}

.stat-label {
    font-size: 14px;
    color: var(--text2);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */

/* Laptops / Small Desktops */
@media (max-width: 1200px) {
    .resources-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 24px;
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1.5fr;
        gap: 32px;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .resources-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .modal-content {
        max-width: 95vw;
        max-height: 85vh;
    }

    .modal-body iframe,
    .modal-body embed {
        height: 55vh;
    }

    .modal-body video {
        max-height: 55vh;
    }

    .hero-title {
        font-size: clamp(2rem, 6vw, 3.5rem);
    }
}

/* Large Mobile / Small Tablets */
@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }

    .hero {
        min-height: 90vh;
        padding: 100px 0 60px;
    }

    .resources-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-col {
        text-align: left;
    }

    .footer-col h4::after {
        left: 0;
        transform: none;
    }

    .social-links {
        justify-content: flex-start;
    }

    .modal {
        padding: 12px;
    }

    .modal-header {
        padding: 18px 20px;
    }

    .modal-body {
        padding: 16px 20px;
        min-height: 150px;
    }

    .modal-body iframe,
    .modal-body embed {
        height: 45vh;
    }

    .modal-body video {
        max-height: 40vh;
    }

    .modal-footer {
        padding: 16px 20px;
        flex-direction: column;
        align-items: stretch;
    }

    .modal-file-info {
        justify-content: center;
    }

    .modal-actions {
        justify-content: stretch;
    }

    .modal-actions button {
        flex: 1;
        justify-content: center;
    }

    .card-actions {
        flex-direction: column;
    }

    .quick-links {
        flex-direction: column;
        align-items: stretch;
    }

    .quick-link {
        justify-content: center;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        justify-content: center;
    }

    .btn-lg {
        padding: 16px 32px;
        font-size: 16px;
    }

    .ticker-item {
        padding: 0 24px;
        font-size: 14px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .header-content {
        padding: 0 16px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-desc {
        font-size: 0.95rem;
    }

    .modal {
        padding: 8px;
    }

    .modal-content {
        max-height: 92vh;
        border-radius: var(--radius-md);
    }

    .modal-header {
        padding: 14px 16px;
    }

    .modal-title {
        font-size: 1.1rem;
    }

    .modal-body {
        padding: 12px 16px;
        min-height: 120px;
    }

    .modal-body iframe,
    .modal-body embed {
        height: 40vh;
    }

    .modal-footer {
        padding: 14px 16px;
    }

    .mobile-menu {
        width: 280px;
        right: -300px;
    }

    .card-preview {
        height: 180px;
    }

    .card-body {
        padding: 18px;
    }

    .footer {
        padding: 50px 0 0;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* Large Monitors */
@media (min-width: 1600px) {
    .resources-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
    }

    .container {
        max-width: 1440px;
    }
}

/* Print Styles */
@media print {
    .header,
    .modal,
    .toast,
    .hero-actions,
    .card-actions {
        display: none !important;
    }

    .hero {
        min-height: auto;
        padding: 40px 0;
    }
}

