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

/* Global Styles */
* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* Gradient Background */
.gradient-bg {
    background: linear-gradient(135deg, #0A0E27 0%, #1a1f3a 50%, #0f3d3e 100%);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #00E676 0%, #00C853 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Card Hover Effects */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 230, 118, 0.15);
}

/* Button Primary */
.btn-primary {
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 230, 118, 0.3);
}

/* Ticker Item */
.ticker-item {
    transition: all 0.2s ease;
}

.ticker-item:hover {
    background: rgba(0, 230, 118, 0.1);
    border-color: #00E676;
}

/* FAQ Details */
details summary {
    cursor: pointer;
    user-select: none;
}

details[open] summary svg {
    transform: rotate(180deg);
}

details summary svg {
    transition: transform 0.3s ease;
}
