@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-blue: #1e3a8a; /* Tailwind blue-900 */
    --accent-gold: #d97706; /* Tailwind amber-600 */
    --soft-white: #f8fafc;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--soft-white);
    overflow-x: hidden;
}

.glass-nav {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

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

.blue-gradient {
    background: linear-gradient(135deg, #1e3a8a 0%, #172554 100%);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #1e40af;
}

/* Swiper custom styles */
.swiper-pagination-bullet-active {
    background: var(--accent-gold) !important;
}

/* AOS Tweaks */
[data-aos] {
    pointer-events: none;
}
.aos-animate {
    pointer-events: auto;
}

/* Hero Section Text Shadow */
.hero-text-shadow {
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Notifications Ticker */
.ticker-container {
    height: 300px;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
}

.ticker-content {
    animation: ticker-vertical 20s linear infinite;
    display: flex;
    flex-direction: column;
}

.ticker-container:hover .ticker-content {
    animation-play-state: paused;
}

@keyframes ticker-vertical {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

.notice-item {
    border-left: 3px solid var(--accent-gold);
    transition: all 0.2s ease;
}

.notice-item:hover {
    background: rgba(30, 58, 138, 0.05);
    border-left-width: 6px;
}
