@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #f97316; /* Deep saffron / orange */
    --primary-hover: #ea580c;
    --secondary-color: #0f172a; /* Slate 900 */
    --accent-color: #3b82f6; /* Blue 500 */
    --bg-color: #f8fafc; /* Slate 50 */
    --surface-color: #ffffff;
    --text-primary: #1e293b; /* Slate 800 */
    --text-secondary: #64748b; /* Slate 500 */
    --border-color: #e2e8f0; /* Slate 200 */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 1rem;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--secondary-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #1e293b;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Navbar */
.navbar {
    background-color: var(--surface-color);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: 'Poppins', sans-serif;
}

@media (min-width: 768px) {
    .logo {
        gap: 0.75rem;
        font-size: 1.5rem;
    }
}

.logo span {
    color: var(--primary-color);
}

.menu-icon {
    display: flex;
    font-size: 2rem;
    cursor: pointer;
    color: var(--secondary-color);
}

@media (min-width: 1024px) {
    .menu-icon {
        display: none;
    }
}

.nav-links {
    position: fixed;
    top: 4.5rem;
    bottom: 0;
    left: -100%;
    width: 100%;
    background: var(--surface-color);
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    gap: 1.5rem;
    transition: var(--transition);
    z-index: 99;
    display: flex;
    box-shadow: var(--shadow-md);
    overflow-y: auto;
    list-style: none;
}

.nav-links.active {
    left: 0;
}

@media (min-width: 1024px) {
    .nav-links {
        position: static;
        height: auto;
        width: auto;
        flex-direction: row;
        padding: 0;
        box-shadow: none;
        background: transparent;
        gap: 1.25rem;
    }
}

.nav-links a {
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    font-size: 1.1rem;
}

@media (min-width: 1024px) {
    .nav-links a {
        font-size: 1rem;
    }
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}
.nav-links a.active {
    color: var(--primary-color);
}

.nav-actions {
    display: none;
}

@media (min-width: 768px) {
    .nav-actions {
        display: flex;
        align-items: center;
        gap: 1.25rem;
        white-space: nowrap;
    }
    
    .nav-actions span {
        white-space: nowrap;
    }
}

/* Inner Page Hero Banner */
.hero {
    color: white;
}

.hero h1,
.hero h2,
.hero h3 {
    color: white;
}

.hero p {
    color: rgba(255, 255, 255, 0.85);
}

.hero span {
    color: var(--primary-color);
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 400px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero-slider {
        height: 70vh;
        min-height: 500px;
    }
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.4) 100%);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 1.5rem;
    right: 1.5rem;
    transform: translateY(-50%);
    z-index: 3;
    color: white;
    opacity: 0;
    transition: all 0.5s ease-in-out 0.3s;
    transform: translateY(-30%);
}

@media (min-width: 768px) {
    .slide-content {
        left: 10%;
        right: auto;
        max-width: 600px;
    }
}

.slide.active .slide-content {
    opacity: 1;
    transform: translateY(-50%);
}

.slide-content h1 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .slide-content h1 {
        font-size: 3.5rem;
    }
}

.slide-content h1 span {
    color: var(--primary-color);
}

.slide-content p {
    font-size: 1rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .slide-content p {
        font-size: 1.125rem;
    }
}

.slider-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 1rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: var(--transition);
}

.slider-arrow:hover {
    background: var(--primary-color);
}

.slider-prev { left: 2rem; }
.slider-next { right: 2rem; }

/* Sections */
.section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Cards */
.card {
    background: var(--surface-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 1.5rem;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: #e0e7ff;
    color: #4f46e5;
    margin-bottom: 1rem;
}

.badge.ncert {
    background: #dcfce7;
    color: #166534;
}

.badge.competitive {
    background: #fee2e2;
    color: #991b1b;
}

/* Grids */
.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.grid-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.admin-split-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .admin-split-grid {
        grid-template-columns: 1fr 2fr;
        gap: 2rem;
    }
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-card {
    background: var(--surface-color);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--surface-color);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

/* Auth Pages */
.auth-container {
    min-height: calc(100vh - 4.5rem - 4.5rem);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.auth-card {
    background: var(--surface-color);
    width: 100%;
    max-width: 450px;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: var(--text-secondary);
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: #cbd5e1;
    padding: 3rem 0 1.5rem;
    margin-top: auto;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer h4 {
    color: white;
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #334155;
    font-size: 0.875rem;
}

/* Alerts */
.alert {
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    font-weight: 500;
}
.alert-success { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.alert-error { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }

/* Dashboard Sidebar */
.dashboard-layout {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 4.5rem);
}

@media (min-width: 992px) {
    .dashboard-layout {
        display: grid;
        grid-template-columns: 250px 1fr;
    }
}

.sidebar {
    background: var(--surface-color);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem;
}

@media (min-width: 992px) {
    .sidebar {
        border-bottom: none;
        border-right: 1px solid var(--border-color);
        padding: 2rem 1rem;
    }
}

.sidebar-menu {
    display: flex;
    overflow-x: auto;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
}

@media (min-width: 992px) {
    .sidebar-menu {
        flex-direction: column;
        overflow-x: visible;
        padding-bottom: 0;
    }
}

.sidebar-menu li {
    margin-bottom: 0;
    white-space: nowrap;
}

@media (min-width: 992px) {
    .sidebar-menu li {
        margin-bottom: 0.5rem;
    }
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1rem;
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
}

@media (min-width: 992px) {
    .sidebar-menu a {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }
}

.sidebar-menu a:hover, .sidebar-menu a.active {
    background: rgba(249, 115, 22, 0.1);
    color: var(--primary-color);
}

.dashboard-content {
    padding: 1.5rem;
    background: var(--bg-color);
}

@media (min-width: 768px) {
    .dashboard-content {
        padding: 2rem;
    }
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.page-item {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    font-weight: 500;
}

.page-item:hover, .page-item.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Utilities */
.text-center { text-align: center; }
.mt-4 { margin-top: 1rem; }
.mb-4 { margin-bottom: 1rem; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }

/* Responsive Media Queries */
@media (max-width: 992px) {
    .dashboard-layout {
        grid-template-columns: 1fr;
    }
    .admin-layout {
        grid-template-columns: 1fr;
    }
    .admin-sidebar {
        min-height: auto;
        padding: 1rem;
    }
    .admin-sidebar nav {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    .admin-sidebar a {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {

    .hero {
        padding: 3rem 0;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .section {
        padding: 2.5rem 0;
    }
    .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .auth-card {
        padding: 1.5rem;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .admin-split-grid {
        grid-template-columns: 1fr;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .card-body {
        padding: 1rem;
    }
    .table th, .table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.875rem;
    }
}

/* Ticker */
.ticker-wrap {
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 0;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}
.ticker-title {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    z-index: 2;
    position: relative;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.ticker-move {
    display: flex;
    white-space: nowrap;
    animation: ticker 25s linear infinite;
    padding-left: 2rem;
}
.ticker-wrap:hover .ticker-move {
    animation-play-state: paused;
}
@keyframes ticker {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Info Cards (Top) */
.info-cards-section {
    margin-top: -60px;
    position: relative;
    z-index: 10;
    padding: 0 1.5rem;
}
.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
}
.info-card {
    background: var(--surface-color);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}
.info-card:hover {
    transform: translateY(-5px);
}
.info-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: var(--radius-md);
}
.info-card h3 {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}
.info-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}
.notice-board {
    height: 150px;
    overflow-y: auto;
    padding-right: 0.5rem;
}
.notice-item {
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 0.75rem;
}
.notice-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}
.notice-date {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* Quick Links */
.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}
.quick-link-box {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
}
.quick-link-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}
.quick-link-icon {
    width: 60px;
    height: 60px;
    background: rgba(249, 115, 22, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    transition: var(--transition);
}
.quick-link-box:hover .quick-link-icon {
    background: var(--primary-color);
    color: white;
}
.quick-link-box h3 {
    font-size: 1.125rem;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 250px;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-overlay i {
    color: white;
    font-size: 2.5rem;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.lightbox.active {
    opacity: 1;
    pointer-events: all;
}
.lightbox-img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}
.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    transition: color 0.3s;
}
.lightbox-close:hover {
    color: var(--primary-color);
}

/* Social Feed */
.social-feed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.feed-card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}
.feed-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.feed-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}
.feed-content p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
}
.feed-image {
    width: 100%;
    height: 150px;
    border-radius: var(--radius-md);
    object-fit: cover;
    margin-bottom: 1rem;
}
.feed-footer {
    display: flex;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

@media (max-width: 992px) {
    .info-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    .info-cards-section {
        margin-top: 2rem;
    }
}
@media (max-width: 768px) {
    .hero-slider {
        height: 50vh;
        min-height: 400px;
    }
    .slide-content {
        left: 5%;
        right: 5%;
    }
    .slide-content h1 {
        font-size: 2.5rem;
    }
    .ticker-wrap {
        flex-direction: column;
        align-items: stretch;
    }
    .ticker-title {
        text-align: center;
        border-radius: 0;
    }
    .info-cards-section {
        margin-top: 1rem;
    }
}
