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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #000000;
    color: #e0e0e0;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.top-header,
.container,
.footer-disclaimer,
.created-by {
    position: relative;
    z-index: 1;
}

.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 40px;
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(102, 126, 234, 0.3);
}

.logo {
    font-size: 2em;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(102, 126, 234, 0.1);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
    color: #667eea;
}

.social-icons a:hover {
    background: #667eea;
    border-color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.social-icons a:hover svg {
    fill: white;
}

.social-icons svg {
    width: 24px;
    height: 24px;
    fill: #667eea;
    transition: fill 0.3s ease;
}

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

header {
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 40px;
}

h1 {
    font-size: 3em;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    font-weight: 700;
}

.subtitle {
    color: #a0a0a0;
    font-size: 1.2em;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.offer-card {
    background: rgba(26, 26, 46, 0.8);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.offer-card::before {
     content: '';
     position: absolute;
     top: -50%;
     left: -50%;
     width: 200%;
     height: 200%;
     background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
     opacity: 0;
     transition: opacity 0.3s ease;
    pointer-events: none; /* WICHTIG: lässt Klicks zur Karte/Links durch */
}

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

.offer-card:hover {
    transform: translateY(-10px);
    border-color: #667eea;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

.casino-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: 700;
    color: #667eea;
    border: 3px solid rgba(102, 126, 234, 0.3);
    overflow: hidden;
    padding: 0;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.casino-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;        /* füllt den Kreis komplett aus /
  object-position: center;  / zentriert das Logo /
  border-radius: 50%;       / folgt der runden Form */
}

.offer-detail {
    margin: 15px 0;
    padding: 12px;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 10px;
    border-left: 3px solid #667eea;
}

.offer-label {
    color: #a0a0a0;
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.offer-value {
    color: #e0e0e0;
    font-size: 1.3em;
    font-weight: 600;
}

.play-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    display: inline-block;
    padding: 15px 50px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.play-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
}

.footer-disclaimer {
    background: rgba(26, 26, 46, 0.95);
    border-top: 2px solid rgba(102, 126, 234, 0.3);
    padding: 50px 20px;
    margin-top: 60px;
    text-align: center;
}

.disclaimer-icon {
    font-size: 3.5em;
    margin-bottom: 20px;
}

.disclaimer-title {
    color: #667eea;
    font-size: 1.8em;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.disclaimer-text {
    color: #b0b0b0;
    font-size: 1.1em;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 20px;
}

.age-warning {
    display: inline-block;
    background: rgba(234, 102, 102, 0.2);
    border: 2px solid #ea6666;
    color: #ea6666;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2em;
    margin-top: 25px;
    letter-spacing: 1px;
}

.created-by {
    background: rgba(15, 15, 30, 0.95);
    padding: 25px;
    text-align: center;
    border-top: 1px solid rgba(102, 126, 234, 0.2);
}

.created-by p {
    color: #667eea;
    font-size: 1.1em;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0;
}

/* Age Gate Styles */
#mainContent {
    display: none;
}

#mainContent.visible {
    display: block;
}

.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-gate-overlay.hidden {
    display: none;
}

.age-gate-content {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(15, 15, 30, 0.95) 100%);
    border: 2px solid #667eea;
    border-radius: 30px;
    padding: 50px 40px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
    animation: fadeInScale 0.5s ease;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.age-gate-icon {
    font-size: 5em;
    margin-bottom: 20px;
}

.age-gate-title {
    color: #667eea;
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.age-gate-text {
    color: #b0b0b0;
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
}

.age-gate-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.age-gate-btn {
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.age-gate-btn-yes {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.age-gate-btn-yes:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
}

.age-gate-btn-no {
    background: rgba(234, 102, 102, 0.2);
    border: 2px solid #ea6666;
    color: #ea6666;
}

.age-gate-btn-no:hover {
    background: #ea6666;
    color: white;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }

    .top-header {
        padding: 20px;
    }

    .logo {
        font-size: 1.5em;
    }

    .social-icons {
        gap: 12px;
    }

    .social-icons a {
        width: 40px;
        height: 40px;
    }

    .social-icons svg {
        width: 20px;
        height: 20px;
    }

    .footer-disclaimer {
        padding: 40px 15px;
    }

    .disclaimer-icon {
        font-size: 2.5em;
    }

    .disclaimer-title {
        font-size: 1.3em;
    }

    .disclaimer-text {
        font-size: 0.95em;
    }

    .age-warning {
        font-size: 1em;
        padding: 12px 25px;
    }

    .created-by p {
        font-size: 0.95em;
    }

    .age-gate-content {
        padding: 40px 25px;
        margin: 20px;
    }

    .age-gate-icon {
        font-size: 3.5em;
    }

    .age-gate-title {
        font-size: 1.5em;
    }

    .age-gate-text {
        font-size: 1em;
    }

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

    .age-gate-btn {
        width: 100%;
    }
}