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

body {
    font-family: 'Inter', sans-serif;
    background-color: #0f0f11;
    color: #e2e8f0;
}

.gradient-text {
    background: linear-gradient(135deg, #FF6B00 0%, #FF2E00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-overlay {
    background: linear-gradient(to bottom, rgba(15, 15, 17, 0.3) 0%, rgba(15, 15, 17, 1) 100%);
}

.glass-panel {
    background: rgba(30, 30, 35, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.custom-table th {
    background-color: #1a1a1d;
    color: #FF6B00;
    font-weight: 700;
}

.custom-table tr:nth-child(even) {
    background-color: #161619;
}

.custom-table tr:hover {
    background-color: #25252b;
}

.cta-button {
    background: linear-gradient(90deg, #FF6B00 0%, #FF4500 100%);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(255, 107, 0, 0.5);
}

/* Mobile Menu Animation */
#mobile-menu {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}

#mobile-menu.active {
    max-height: 500px;
    opacity: 1;
}

/* FAQ Accordion Styles */
.faq-item {
    border-bottom: 1px solid #2d2d30;
}
.faq-button {
    width: 100%;
    text-align: left;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: none;
    border: none;
    color: white;
    font-weight: 600;
    transition: color 0.3s;
}
.faq-button:hover {
    color: #FF6B00;
}
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.faq-content p {
    padding-bottom: 1.5rem;
    color: #9ca3af;
}
.faq-icon {
    transition: transform 0.3s ease;
}
.faq-button.active .faq-icon {
    transform: rotate(180deg);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 15, 17, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid #333;
    padding: 1rem;
    z-index: 100;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}
.cookie-banner.show {
    transform: translateY(0);
}

/* Trust Badges */
.trust-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border: 1px solid #333;
    border-radius: 4px;
    background: #1a1a1d;
    color: #888;
    font-size: 0.75rem;
    font-weight: 600;
    margin: 0.25rem;
}
.trust-18 { border-color: #ef4444; color: #ef4444; }
.trust-spelpaus { border-color: #3b82f6; color: #3b82f6; }
