/* DealzDealz — Premium Dark Design 2.0 */
/* Von Sirius mit ✨ erstellt */

:root {
    --color-primary: #1a1a2e;
    --color-secondary: #16213e;
    --color-accent: #ff6b35;
    --color-accent-glow: rgba(255, 107, 53, 0.4);
    --color-accent-gold: #ffc107;
    --color-success: #28a745;
    --color-text: #e8e8e8;
    --color-text-muted: #a0a0a0;
    --color-background: #0a0a14;
    --color-card: #12121f;
    --color-card-hover: #1a1a30;
    --color-border: rgba(255, 107, 53, 0.15);
    --gradient-hero: linear-gradient(135deg, #1a1a2e 0%, #0a0a14 50%, #16213e 100%);
    --gradient-accent: linear-gradient(135deg, #ff6b35 0%, #ff8555 50%, #ffc107 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 30px var(--color-accent-glow);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Alle Links ohne Standard-Browser-Styling */
a {
    color: inherit;
    text-decoration: none;
    outline: none;
}

a:hover {
    text-decoration: none;
}

a:focus {
    outline: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-background);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==================== LIVE TICKER ==================== */
.live-ticker {
    background: linear-gradient(90deg, var(--color-accent), #ff8555, var(--color-accent-gold), var(--color-accent));
    background-size: 300% 100%;
    animation: gradient-flow 8s ease infinite;
    padding: 10px 0;
    overflow: hidden;
    position: relative;
}

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

.ticker-content {
    display: flex;
    gap: 80px;
    white-space: nowrap;
    color: white;
    font-weight: 600;
    font-size: 14px;
    will-change: transform;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ==================== HEADER ==================== */
.header {
    background: rgba(18, 18, 31, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--color-text);
    transition: transform 0.3s;
}

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

.logo-icon {
    font-size: 32px;
    filter: drop-shadow(0 0 10px var(--color-accent-glow));
}

.logo-text {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-de {
    color: var(--color-accent);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: all 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

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

.nav-link {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.3s;
}

.nav-link:hover {
    color: var(--color-accent);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link-highlight {
    background: var(--gradient-accent);
    color: white !important;
    padding: 10px 20px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-glow);
}

.nav-link-highlight::after {
    display: none;
}

.nav-link-highlight:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px var(--color-accent-glow);
}

/* ==================== HERO ==================== */
.hero {
    position: relative;
    padding: 100px 0 80px;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, var(--color-accent-glow) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255, 193, 7, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.sirius-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid var(--color-accent);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.badge-icon {
    font-size: 20px;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { filter: drop-shadow(0 0 5px var(--color-accent)); }
    50% { filter: drop-shadow(0 0 15px var(--color-accent)); }
}

.badge-text {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-title .highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Search Bar */
.search-bar {
    display: flex;
    max-width: 500px;
    margin: 0 auto 40px;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 6px;
    transition: all 0.3s;
}

.search-bar:focus-within {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-glow);
}

.search-bar input {
    flex: 1;
    background: none;
    border: none;
    padding: 14px 20px;
    color: var(--color-text);
    font-size: 16px;
    outline: none;
}

.search-bar input::placeholder {
    color: var(--color-text-muted);
}

.search-btn {
    background: var(--gradient-accent);
    border: none;
    padding: 14px 24px;
    border-radius: var(--radius-xl);
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.3s;
}

.search-btn:hover {
    transform: scale(1.1);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--color-accent);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==================== ANIMATIONS ==================== */
.animate-float {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slide-up 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes slide-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-pulse {
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(40, 167, 69, 0); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== DEAL OF WEEK ==================== */
.deal-of-week {
    padding: 80px 0;
    position: relative;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 16px;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
}

.countdown-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid var(--color-accent);
    padding: 8px 16px;
    border-radius: var(--radius-xl);
}

.countdown-label {
    font-size: 13px;
    color: var(--color-text-muted);
}

.countdown-timer {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-accent);
    font-variant-numeric: tabular-nums;
}

.deal-card {
    background: var(--color-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: all 0.4s;
    position: relative;
}

.deal-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.deal-card-featured {
    display: grid;
    grid-template-columns: 320px 1fr;
}

.deal-image {
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    position: relative;
    overflow: hidden;
}

.deal-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 30%, rgba(0,0,0,0.2) 100%);
}

.deal-placeholder {
    font-size: 100px;
    position: relative;
    z-index: 1;
}

.pulse-icon {
    display: inline-block;
    animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.deal-ribbon {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-weight: 800;
    font-size: 18px;
    backdrop-filter: blur(10px);
}

.deal-urgency {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 107, 53, 0.9);
    color: white;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    animation: pulse-urgency 2s ease-in-out infinite;
}

@keyframes pulse-urgency {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.social-proof {
    display: flex;
    gap: 20px;
    padding: 12px 0;
    border-top: 1px solid var(--color-border);
    margin-bottom: 16px;
}

.proof-item {
    font-size: 13px;
    color: var(--color-success);
    font-weight: 600;
}

.deal-content {
    padding: 36px;
}

.deal-category {
    display: inline-block;
    background: rgba(255, 107, 53, 0.15);
    color: var(--color-accent);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.deal-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
}

.deal-description {
    color: var(--color-text-muted);
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.deal-meta {
    display: flex;
    gap: 28px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.deal-savings, .deal-deadline {
    font-size: 15px;
    font-weight: 600;
}

.deal-trust {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.trust-item {
    font-size: 14px;
    color: var(--color-success);
    font-weight: 600;
}

.deal-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.deal-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-accent);
    color: white;
    padding: 16px 36px;
    border-radius: var(--radius-xl);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
    box-shadow: var(--shadow-glow);
}

.deal-button:hover {
    transform: translateX(4px);
    box-shadow: 0 0 50px var(--color-accent-glow);
}

.sirius-check {
    position: absolute;
    top: 28px;
    right: 28px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(40, 167, 69, 0.2);
    border: 1px solid var(--color-success);
    padding: 10px 18px;
    border-radius: 50px;
}

.check-icon {
    font-size: 18px;
}

.check-text {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-success);
    text-transform: uppercase;
}

/* ==================== CATEGORIES ==================== */
.categories {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--color-background) 0%, var(--color-primary) 50%, var(--color-background) 100%);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.category-card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    text-decoration: none;
    color: var(--color-text);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.category-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--color-accent-glow) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s;
}

.category-card:hover .category-glow {
    opacity: 1;
}

.category-icon {
    display: block;
    font-size: 56px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.category-name {
    display: block;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.category-count {
    display: block;
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.category-arrow {
    display: inline-block;
    font-size: 20px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
    color: var(--color-accent);
}

.category-card:hover .category-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ==================== MORE DEALS ==================== */
.more-deals {
    padding: 80px 0;
}

.view-all {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.view-all:hover {
    transform: translateX(4px);
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.deals-grid .deal-card {
    padding: 28px;
    position: relative;
}

.deal-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 193, 7, 0.2);
    color: var(--color-accent-gold);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 700;
}

.deal-card-badge-hot {
    background: rgba(255, 107, 53, 0.2);
    color: var(--color-accent);
}

.deals-grid .deal-title {
    font-size: 20px;
}

.deal-price {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.price-old {
    text-decoration: line-through;
    color: var(--color-text-muted);
    font-size: 15px;
}

.price-new {
    color: var(--color-success);
    font-size: 24px;
    font-weight: 800;
}

.deal-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
}

.deal-savings-small {
    font-size: 13px;
    color: var(--color-success);
    font-weight: 600;
}

.deal-button-small {
    display: inline-block;
    background: transparent;
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s;
}

.deal-button-small:hover {
    background: var(--color-accent);
    color: white;
}

/* ==================== TRUST SECTION ==================== */
.trust-section {
    padding: 80px 0;
    background: var(--color-primary);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.trust-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all 0.4s;
}

.trust-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-accent);
}

.trust-icon {
    display: block;
    font-size: 56px;
    margin-bottom: 20px;
}

.trust-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
}

.trust-card p {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ==================== NEWSLETTER ==================== */
.newsletter {
    padding: 80px 0;
    background: var(--gradient-hero);
    position: relative;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--color-accent-glow) 0%, transparent 70%);
    pointer-events: none;
}

.newsletter-content {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.newsletter-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 20px;
}

.newsletter h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
}

.newsletter p {
    color: var(--color-text-muted);
    margin-bottom: 32px;
    font-size: 16px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 24px;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    color: var(--color-text);
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
}

.newsletter-form input:focus {
    border-color: var(--color-accent);
}

.newsletter-btn {
    background: var(--gradient-accent);
    border: none;
    padding: 16px 32px;
    border-radius: var(--radius-xl);
    color: white;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.newsletter-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.newsletter-note {
    font-size: 13px !important;
    color: var(--color-text-muted) !important;
    margin-bottom: 0 !important;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--color-card);
    border-top: 1px solid var(--color-border);
    padding: 48px 0 28px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 36px;
    flex-wrap: wrap;
    gap: 32px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-brand p {
    color: var(--color-text-muted);
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-secondary);
    border-radius: 50%;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--color-accent);
    transform: translateY(-4px);
}

.footer-links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 28px;
    border-top: 1px solid var(--color-border);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.footer-disclaimer {
    font-size: 12px !important;
    opacity: 0.7;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .deal-card-featured {
        grid-template-columns: 1fr;
    }
    
    .deal-image {
        min-height: 250px;
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .deals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-card);
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        border-bottom: 1px solid var(--color-border);
        display: none;
    }
    
    .nav-open {
        display: flex !important;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-stats {
        gap: 32px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .deals-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-brand {
        align-items: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .deal-price-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
    padding: 80px 0;
    background: var(--color-primary);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.faq-item {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--color-accent);
    transform: translateY(-4px);
}

.faq-question {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text);
}

.faq-answer {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== PARTNER SECTION ==================== */
.partner-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-card) 100%);
}

.partner-badge {
    display: flex;
    align-items: center;
    gap: 32px;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 32px 48px;
    transition: all 0.4s;
}

.partner-badge:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-glow);
}

.partner-icon {
    font-size: 64px;
}

.partner-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.partner-content p {
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.partner-link {
    display: inline-block;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid var(--color-accent);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--color-accent);
    font-weight: 600;
}

/* ==================== UTILITY ==================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Footer Partner */
.footer-partner {
    font-size: 12px;
    color: var(--color-accent);
    margin-top: 8px;
}

/* ==================== COOKIE BANNER ==================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-card);
    border-top: 2px solid var(--color-accent);
    padding: 16px 24px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.cookie-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    font-size: 14px;
    color: var(--color-text-muted);
    margin: 0;
}

.cookie-content a {
    color: var(--color-accent);
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-accept {
    background: var(--gradient-accent);
    border: none;
    color: white;
}

.cookie-accept:hover {
    transform: scale(1.05);
}

.cookie-decline {
    background: transparent;
    border: 1px solid var(--color-text-muted);
    color: var(--color-text-muted);
}

.cookie-decline:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ==================== LEGAL PAGES ==================== */
.page-content {
    padding: 80px 0;
    min-height: 60vh;
}

.page-content h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 40px;
    text-align: center;
}

.legal-section {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-top: 40px;
}

.legal-section h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 32px 0 16px;
    color: var(--color-accent);
}

.legal-section h2:first-child {
    margin-top: 0;
}

.legal-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 24px 0 12px;
}

.legal-section p {
    margin-bottom: 16px;
    line-height: 1.7;
    color: var(--color-text-muted);
}

.legal-section ul {
    margin: 16px 0 16px 24px;
    color: var(--color-text-muted);
}

.legal-section li {
    margin-bottom: 8px;
}

.legal-section a {
    color: var(--color-accent);
    text-decoration: none;
    border-bottom: none;
}

.legal-section a:hover {
    text-decoration: none;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .page-content {
        padding: 40px 0;
    }
    
    .page-content h1 {
        font-size: 32px;
    }
    
    .legal-section {
        padding: 24px;
    }
}