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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a0a2e 50%, #2a1a4e 100%);
    color: #fff;
    overflow-x: hidden;
}

/* Particle Animation */
.particles {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 215, 0, 0.6);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) translateX(50px); opacity: 0; }
}

/* Header */
header {
    position: relative;
    z-index: 10;
    padding: 20px 5%;
    background: rgba(10, 10, 30, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    font-size: 32px;
    font-weight: bold;
    background: linear-gradient(45deg, #ffd700, #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

/* Header Navigation */
.header-nav {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.nav-btn {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-decoration: none;
    color: #ffd700;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 100px 5% 80px;
    overflow: hidden;
}

.hero h1 {
    font-size: 64px;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffd700, #ff6b00, #ffd700);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.hero p {
    font-size: 24px;
    color: #ccc;
    margin-bottom: 40px;
}

.hero-btn {
    display: inline-block;
    padding: 18px 50px;
    font-size: 20px;
    font-weight: bold;
    color: #0a0a1a;
    background: linear-gradient(45deg, #ffd700, #ff8800);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 48px;
    margin: 60px 0 40px;
    position: relative;
    z-index: 5;
}

/* Casino Grid */
.casino-grid {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 40px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.casino-card {
    background: linear-gradient(145deg, rgba(26, 10, 46, 0.9), rgba(42, 26, 78, 0.9));
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.casino-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    pointer-events: none; /* Verhindert Blockierung von Klicks */
}

.casino-card:hover::before {
    left: 100%;
}

.casino-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.3);
}

.casino-logo {
    width: 100%;
    height: 120px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ffd700;
}

.rating {
    font-size: 24px;
    color: #ffd700;
    margin-bottom: 15px;
}

.features {
    margin: 20px 0;
}

.feature-item {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
}

.feature-item:last-child {
    border-bottom: none;
}

.icon {
    margin-right: 10px;
    font-size: 18px;
}

.bonus-highlight {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.2), rgba(255, 215, 0, 0.2));
    border-radius: 12px;
    padding: 15px;
    margin: 15px 0;
    border-left: 4px solid #ffd700;
}

.cta-btn {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    color: #0a0a1a;
    background: linear-gradient(45deg, #ffd700, #ff8800);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    text-decoration: none;
    display: block;
    text-align: center;
}

.cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

/* Footer */
footer {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 40px 5%;
    background: rgba(10, 10, 30, 0.8);
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    margin-top: 80px;
}

.disclaimer {
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 14px;
    line-height: 1.8;
    color: #aaa;
}

.help-info {
    color: #ff6b6b;
    font-weight: bold;
    margin: 20px 0;
}

/* Content Container für Unterseiten */
.content-container {
    position: relative;
    z-index: 5;
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px 5%;
}

.content-box {
    background: rgba(26, 10, 46, 0.9);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
}

.content-box h2 {
    color: #ffd700;
    font-size: 32px;
    margin-bottom: 20px;
}

.content-box h3 {
    color: #ff8800;
    font-size: 24px;
    margin: 25px 0 15px;
}

.content-box p {
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 15px;
}

.content-box ul,
.content-box ol {
    margin-left: 30px;
    color: #ccc;
    line-height: 1.8;
}

.content-box li {
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    .logo {
        font-size: 24px;
    }

    .header-nav {
        justify-content: center;
    }

    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .casino-grid {
        grid-template-columns: 1fr;
    }

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






a {
  color: #FFFFFF;
  font-weight: bold;
}