/* CSS Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #f0f2f5 0%, #e8ecf1 100%);
    color: #1a1a2e;
    line-height: 1.6;
    transition: background 0.3s ease, color 0.3s ease;
    min-height: 100vh;
}

body.dark {
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
    color: #e0e0e0;
}

a {
    color: #1a73e8;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    text-decoration: underline;
    color: #ffd700;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(26, 26, 46, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    transition: background 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.dark .header {
    background: rgba(15, 15, 26, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffd700;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
    letter-spacing: 1px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo span {
    color: #fff;
    margin-left: 4px;
}

.nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav a {
    color: #ccc;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.2s ease;
    position: relative;
    padding: 4px 0;
}

.nav a:hover,
.nav a.active {
    color: #ffd700;
    transform: translateY(-1px);
}

.nav a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ffd700, #ff8c00);
    border-radius: 2px;
    animation: navUnderline 0.4s ease forwards;
}

@keyframes navUnderline {
    from { width: 0; opacity: 0; }
    to { width: 100%; opacity: 1; }
}

.dark .nav a {
    color: #aaa;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: none;
    border: none;
    padding: 5px;
    transition: transform 0.3s ease;
}

.menu-toggle:hover {
    transform: rotate(90deg);
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.dark .menu-toggle span {
    background: #e0e0e0;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 30%, #0f3460 70%, #1a1a2e 100%);
    color: #fff;
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 60%);
    animation: glow 8s ease-in-out infinite;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ffd700, #ff8c00, transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.dark .hero {
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 30%, #0a1628 70%, #0f0f1a 100%);
}

@keyframes glow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, 30px) scale(1.1); }
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 50%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 1;
    color: #ccc;
    line-height: 1.8;
}

.hero .btn {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #1a1a2e;
    font-weight: 700;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    position: relative;
    z-index: 1;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero .btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #ff8c00, #ffd700);
}

.hero .btn:active {
    transform: translateY(0) scale(0.98);
}

/* Sections */
.section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a2e;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #ff8c00);
    margin: 10px auto 0;
    border-radius: 2px;
}

.dark .section-title {
    color: #ffd700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.dark .section-subtitle {
    color: #aaa;
}

/* Grid */
.grid {
    display: grid;
    gap: 30px;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Cards */
.card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.4s ease,
                background 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.dark .card {
    background: rgba(30, 30, 50, 0.75);
    border-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card:hover::before {
    opacity: 1;
}

.dark .card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
    transition: transform 0.3s ease;
}

.card:hover .card-icon {
    transform: scale(1.2) rotate(5deg);
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #1a1a2e;
    transition: color 0.3s ease;
}

.dark .card h3 {
    color: #ffd700;
}

.card p {
    color: #555;
    line-height: 1.7;
    transition: color 0.3s ease;
}

.dark .card p {
    color: #bbb;
}

/* Stats */
.stats {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 50%, #1a1a2e 100%);
    color: #fff;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,215,0,0.05)'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.stats .grid {
    text-align: center;
    position: relative;
    z-index: 1;
}

.stats .stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffd700;
    display: block;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
    transition: transform 0.3s ease;
}

.stats .stat-number:hover {
    transform: scale(1.1);
}

.stats .stat-label {
    font-size: 1rem;
    color: #ccc;
    margin-top: 5px;
    letter-spacing: 1px;
}

/* Banner Slider */
.banner-slider {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 400px;
    background: linear-gradient(135deg, #1a1a2e, #0f3460);
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 40px;
    text-align: center;
    color: #fff;
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
    transform: scale(0.95);
}

.banner-slide.active {
    opacity: 1;
    transform: scale(1);
}

.banner-slide h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banner-slide p {
    font-size: 1.1rem;
    max-width: 600px;
    color: #ddd;
}

.banner-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.banner-dots span {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.banner-dots span.active {
    background: #ffd700;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.banner-dots span:hover {
    background: #ffd700;
    transform: scale(1.1);
}

/* FAQ */
.faq-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 18px 0;
    transition: border-color 0.3s ease;
}

.dark .faq-item {
    border-color: #333;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: #1a1a2e;
    transition: color 0.3s ease, padding 0.3s ease;
    padding: 8px 0;
}

.dark .faq-question {
    color: #e0e0e0;
}

.faq-question:hover {
    color: #ffd700;
    padding-left: 5px;
}

.faq-question .icon {
    font-size: 1.5rem;
    transition: transform 0.4s ease, color 0.3s ease;
    font-weight: 300;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                padding 0.4s ease,
                opacity 0.4s ease;
    padding: 0 20px;
    color: #555;
    opacity: 0;
}

.dark .faq-answer {
    color: #bbb;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 15px 20px;
    opacity: 1;
}

.faq-item.open .faq-question .icon {
    transform: rotate(45deg);
    color: #ffd700;
}

/* HowTo */
.howto-step {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.howto-step:hover {
    transform: translateX(5px);
}

.howto-step .step-num {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #1a1a2e;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.howto-step:hover .step-num {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.howto-step .step-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #1a1a2e;
}

.dark .howto-step .step-content h4 {
    color: #ffd700;
}

.howto-step .step-content p {
    color: #666;
    line-height: 1.7;
}

.dark .howto-step .step-content p {
    color: #bbb;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
    color: #ccc;
    padding: 60px 0 30px;
    position: relative;
}

.dark .footer {
    background: linear-gradient(135deg, #0a0a15 0%, #0f0f1a 100%);
}

.footer .grid {
    grid-template-columns: repeat(4, 1fr);
}

.footer h4 {
    color: #ffd700;
    margin-bottom: 20px;
    font-size: 1.1rem;
    position: relative;
    display: inline-block;
}

.footer h4::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: #ffd700;
    margin-top: 5px;
    border-radius: 1px;
}

.footer a {
    color: #aaa;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease, transform 0.2s ease;
    font-size: 0.95rem;
}

.footer a:hover {
    color: #ffd700;
    transform: translateX(3px);
    text-decoration: none;
}

.footer .copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    margin-top: 30px;
    color: #888;
    font-size: 0.9rem;
}

.footer .copyright a {
    display: inline;
    margin: 0 5px;
    color: #aaa;
}

.footer .copyright a:hover {
    color: #ffd700;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #1a1a2e;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

.back-to-top:active {
    transform: translateY(0) scale(0.95);
}

/* Dark Mode Toggle */
.dark-mode-toggle {
    position: fixed;
    top: 85px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.3rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 999;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.dark .dark-mode-toggle {
    background: rgba(30, 30, 50, 0.85);
    border-color: #444;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.dark-mode-toggle:hover {
    transform: scale(1.15) rotate(15deg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Search Box */
.search-box {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto 40px;
}

.search-box input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid #ddd;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
}

.dark .search-box input {
    background: rgba(30, 30, 50, 0.8);
    border-color: #444;
    color: #e0e0e0;
}

.search-box input:focus {
    border-color: #ffd700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

.search-box button {
    padding: 14px 30px;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #1a1a2e;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.search-box button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.search-box button:active {
    transform: scale(0.98);
}

/* Fade In Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Partners Section Special */
#partners .card {
    text-align: center;
    padding: 25px 20px;
}

#partners .card span {
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
    display: block;
    transition: transform 0.3s ease;
}

#partners .card:hover span {
    transform: scale(1.1);
}

#partners .card p {
    margin-top: 5px;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(26, 26, 46, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 20px;
        gap: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    }
    
    .nav.open {
        display: flex;
        animation: slideDown 0.3s ease forwards;
    }
    
    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .banner-slider {
        height: 280px;
    }
    
    .banner-slide h2 {
        font-size: 1.6rem;
    }
    
    .banner-slide p {
        font-size: 0.95rem;
    }
    
    .footer .grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
    
    .dark-mode-toggle {
        top: 75px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .stats .stat-number {
        font-size: 2rem;
    }
    
    .card {
        padding: 25px;
    }
    
    .search-box {
        flex-direction: column;
        gap: 10px;
    }
    
    .search-box button {
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .footer .grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .banner-slider {
        height: 220px;
    }
    
    .banner-slide h2 {
        font-size: 1.3rem;
    }
    
    .banner-slide p {
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .card {
        padding: 20px;
    }
    
    .card-icon {
        font-size: 2rem;
    }
    
    .card h3 {
        font-size: 1.1rem;
    }
    
    .howto-step {
        gap: 15px;
    }
    
    .howto-step .step-num {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* Accessibility & Print */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media print {
    .header,
    .back-to-top,
    .dark-mode-toggle,
    .search-box {
        display: none !important;
    }
    
    body {
        background: #fff;
        color: #000;
    }
    
    .card {
        box-shadow: none;
        border: 1px solid #ddd;
        break-inside: avoid;
    }
}

/* Selection */
::selection {
    background: rgba(255, 215, 0, 0.3);
    color: #1a1a2e;
}

.dark ::selection {
    background: rgba(255, 215, 0, 0.4);
    color: #0f0f1a;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f0f2f5;
}

.dark ::-webkit-scrollbar-track {
    background: #1a1a2e;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ff8c00, #ffd700);
}

/* Focus Visible */
:focus-visible {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}

/* Loading State */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    animation: loadingShimmer 1.5s ease infinite;
}

@keyframes loadingShimmer {
    to { left: 100%; }
}