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

:root {
    /* Logo-basierte Farbpalette */
    --primary-color: #005C99;
    --secondary-color: #004B8A;
    --accent-color: #007ACC;
    --highlight-color: #FFA500;
    --highlight-blue: #00BFFF;
    --highlight-orange: #FF8C00;
    --purple-accent: #8A2BE2;
    --purple-dark: #5B0099;
    --blue-light: #A8E6FF;
    --orange-dark: #CC5500;
    --text-primary: #ffffff;
    --text-secondary: #E0F8FF;
    --bg-dark: #000000;
    --bg-card: #1a1a2e;
    --border-color: #005C99;
    --glow-blue: #B0FFFF;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.15;
    pointer-events: none;
}

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

/* Age Verification Modal */
.age-modal {
    display: flex;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.age-modal.hidden {
    display: none;
}

.age-modal-content {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    text-align: center;
    max-width: 500px;
    width: 90%;
}

.age-modal-content h2 {
    margin-bottom: 20px;
    color: var(--highlight-color);
    font-size: 28px;
}

.age-modal-content p {
    margin-bottom: 15px;
    color: var(--text-secondary);
    font-size: 16px;
}

.age-modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.btn-primary, .btn-secondary {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-primary {
    background-color: var(--highlight-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--highlight-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.4);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
}

/* Header */
.header {
    background: linear-gradient(
        135deg,
        rgba(10, 15, 25, 0.95),
        rgba(5, 10, 20, 0.95)
    );
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 191, 255, 0.3);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 110px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.logo-icon {
    font-size: 28px;
}

.main-nav {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--highlight-blue), var(--highlight-color));
    transition: width 0.3s ease;
    box-shadow: 0 0 8px var(--highlight-blue);
}

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

.language-selector {
    display: flex;
    gap: 10px;
}

.flag {
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.flag:hover {
    transform: scale(1.2);
}

/* Hero Section */
.hero {
    background: transparent;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background-color: var(--highlight-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 48px;
    margin-bottom: 30px;
    font-weight: 700;
    color: var(--highlight-blue);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 191, 255, 0.5);
}

.hero-social {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.social-link {
    color: var(--text-primary);
    text-decoration: none;
    padding: 12px 24px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.social-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.2), rgba(255, 165, 0, 0.2));
    border-color: var(--highlight-blue);
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.4);
    transform: translateY(-2px);
}

.social-link:hover .social-icon {
    transform: scale(1.1);
}

/* Main Content */
.main-content {
    padding: 20px 0;
    min-height: 60vh;
}

.filters-section {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.filters-header h2 {
    font-size: 32px;
    color: var(--highlight-color);
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sort-options label {
    color: var(--text-secondary);
}

.sort-select {
    background-color: var(--secondary-color);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
}

.sort-select:focus {
    outline: none;
    border-color: var(--highlight-color);
}

.filters-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.quick-filters h3,
.advanced-filters h3 {
    margin-bottom: 15px;
    color: var(--text-primary);
    font-size: 18px;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    background-color: var(--secondary-color);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.filter-btn:hover {
    background-color: var(--accent-color);
    border-color: var(--highlight-color);
}

.filter-btn.active {
    background-color: var(--highlight-color);
    border-color: var(--highlight-color);
}

.filter-group {
    margin-bottom: 20px;
}

.filter-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-size: 14px;
}

.filter-group input[type="range"] {
    width: 100%;
    height: 6px;
    background: var(--secondary-color);
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
}

.filter-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: var(--highlight-color);
    border-radius: 50%;
    cursor: pointer;
}

.filter-group input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: var(--highlight-color);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.filter-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

/* Casino Listings */
.casino-listings {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.casino-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.casino-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--highlight-blue), var(--highlight-color), var(--purple-accent));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    box-shadow: 0 0 10px var(--glow-blue);
}

.casino-card:hover {
    transform: translateY(-5px);
    border-color: var(--highlight-blue);
    box-shadow: 0 10px 30px rgba(0, 191, 255, 0.3), 0 5px 15px rgba(255, 165, 0, 0.2);
}

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

.casino-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.casino-name {
    font-size: 22px;
    font-weight: bold;
    color: var(--text-primary);
}

.casino-rating {
    background-color: var(--highlight-color);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

.casino-bonus {
    margin-bottom: 20px;
}

.bonus-amount {
    font-size: 32px;
    font-weight: bold;
    color: var(--highlight-color);
    margin-bottom: 5px;
}

.bonus-percentage {
    color: var(--text-secondary);
    font-size: 14px;
}

.casino-features {
    list-style: none;
    margin-bottom: 20px;
}

.casino-features li {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 14px;
    position: relative;
    padding-left: 20px;
}

.casino-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--highlight-color);
    font-weight: bold;
}

.casino-cta {
    width: 100%;
    padding: 12px;
    background-color: var(--highlight-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.casino-cta:hover {
    background-color: #d6364f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.4);
}

/* Partners Section */
.partners-section {
    margin-top: 20px;
    padding: 20px 0;
    scroll-margin-top: 100px;
}

.partners-title {
    font-size: 32px;
    color: var(--highlight-blue);
    margin-bottom: 40px;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 191, 255, 0.6);
}

.partners-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.partner-card {
    background-color: var(--bg-card);
    border: 1px solid var(--highlight-blue);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    min-height: 160px;
}

.partner-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 191, 255, 0.3), 0 5px 15px rgba(255, 165, 0, 0.2);
    border-color: var(--highlight-blue);
}

/* Logo Area */
.partner-logo-area {
    flex-shrink: 0;
}

.partner-logo-box {
    width: 140px;
    height: 140px;
    background-color: transparent;
    border: 2px dashed var(--text-secondary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.partner-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Partner Info */
.partner-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.partner-name {
    font-size: 36px;
    font-weight: bold;
    color: var(--highlight-blue);
    text-shadow: 0 0 15px rgba(0, 191, 255, 0.6);
    letter-spacing: 1px;
}

.partner-tagline {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: -5px;
}

.partner-bonus-boxes {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.bonus-box {
    background-color: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 16px;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bonus-box-label {
    font-size: 10px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.bonus-box-value {
    font-size: 24px;
    font-weight: bold;
    color: var(--highlight-blue);
    text-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
}

.bonus-box-sub {
    font-size: 12px;
    color: var(--highlight-blue);
    font-weight: 600;
    margin-top: -2px;
}

/* Partner Actions */
.partner-actions {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.btn-get-bonus {
    background: linear-gradient(90deg, var(--highlight-blue), var(--highlight-color));
    color: white;
    border: none;
    border-radius: 12px;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 191, 255, 0.4);
    min-width: 180px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-get-bonus:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 25px rgba(0, 191, 255, 0.6), 0 4px 15px rgba(255, 165, 0, 0.4);
    background: linear-gradient(90deg, var(--highlight-blue), var(--highlight-orange));
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    border-top: 1px solid var(--border-color);
    padding: 30px 0;
    text-align: center;
    color: var(--text-secondary);
    margin-top: 60px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        width: 100%;
        justify-content: space-between;
    }

    .hero-title {
        font-size: 32px;
    }

    .filters-container {
        grid-template-columns: 1fr;
    }

    .filters-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .casino-listings {
        grid-template-columns: 1fr;
    }

    .partner-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .partner-logo-box {
        width: 120px;
        height: 120px;
    }

    .partner-info {
        width: 100%;
        align-items: center;
    }

    .partner-bonus-boxes {
        flex-wrap: wrap;
        justify-content: center;
    }

    .bonus-box {
        min-width: 100px;
        flex: 1;
    }

    .partner-actions {
        width: 100%;
    }

    .btn-get-bonus {
        width: 100%;
        padding: 16px 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }

    .age-modal-content {
        padding: 20px;
    }

    .age-modal-buttons {
        flex-direction: column;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
    }

    .partner-name {
        font-size: 28px;
    }

    .partner-bonus-boxes {
        flex-direction: column;
    }

    .bonus-box {
        width: 100%;
    }
}
