/* Reset und Basis-Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f172a 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo-img {
    height: 40px;
    width: auto;
    max-width: 150px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 0;
}

.nav-link:hover {
    color: #00ff88;
}

.header-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    color: #1a1a2e;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #00ff88;
    border: 2px solid #00ff88;
}

.btn-secondary:hover {
    background: #00ff88;
    color: #1a1a2e;
}

.btn-cta {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #ffffff;
    font-size: 18px;
    padding: 18px 40px;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    color: #a0a0a0;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-icon {
    font-size: 1.5rem;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Main Content */
.main-content {
    padding: 80px 0;
}

.content-section {
    margin-bottom: 80px;
}

.content-section h2 {
    font-size: 2.5rem;
    color: #00ff88;
    margin-bottom: 30px;
    text-align: center;
}

.content-section h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin: 30px 0 20px 0;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 20px;
    text-align: justify;
}

.content-flex {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.content-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.image-center {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.center-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Table Styles */
.table-wrapper {
    overflow-x: auto;
    margin: 40px 0;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.casino-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.casino-table th,
.casino-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.casino-table th {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
    font-weight: 600;
    font-size: 1.1rem;
}

.casino-table td {
    color: #e0e0e0;
}

.casino-table tr:last-child td {
    border-bottom: none;
}

/* Lists */
.payment-list,
.payout-list {
    list-style: none;
    margin: 20px 0;
}

.payment-list li,
.payout-list li {
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 4px solid #00ff88;
    color: #e0e0e0;
}

.payout-list {
    counter-reset: payout-counter;
}

.payout-list li {
    counter-increment: payout-counter;
    position: relative;
    padding-left: 50px;
}

.payout-list li::before {
    content: counter(payout-counter);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: #00ff88;
    color: #1a1a2e;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin: 60px 0;
    padding: 40px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

/* FAQ Section */
.faq-section h2 {
    margin-bottom: 50px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    position: relative;
    color: #ffffff;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    margin: 0;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #00ff88;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #00ff88;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 30px 25px 30px;
    margin: 0;
    color: #e0e0e0;
}

/* Footer */
.footer {
    background: rgba(16, 16, 30, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 0 30px;
    margin-top: 100px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #00ff88;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.footer-section p {
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-section a {
    color: #00ff88;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #00cc6a;
}

.responsible-gambling {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.payment-providers,
.game-providers {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.payment-logo,
.provider-logo {
    height: 35px;
    width: auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.payment-logo:hover,
.provider-logo:hover {
    transform: scale(1.1);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-meta p {
    color: #a0a0a0;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00ff88;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-list {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .content-section h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .content-flex {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .content-section h2 {
        font-size: 2rem;
    }
    
    .content-section p {
        text-align: left;
    }
    
    .casino-table {
        font-size: 0.9rem;
    }
    
    .casino-table th,
    .casino-table td {
        padding: 12px 15px;
    }
    
    .faq-question {
        font-size: 1.1rem;
        padding: 20px 25px;
    }
    
    .faq-answer p {
        padding: 0 25px 20px 25px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .payment-providers,
    .game-providers {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 12px 0;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .header-buttons {
        gap: 10px;
    }
    
    .btn {
        padding: 10px 18px;
        font-size: 12px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .feature-item {
        padding: 12px 16px;
    }
    
    .content-section {
        margin-bottom: 60px;
    }
    
    .content-section h2 {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .content-section p {
        font-size: 1rem;
    }
    
    .btn-cta {
        font-size: 16px;
        padding: 15px 30px;
    }
    
    .casino-table {
        font-size: 0.8rem;
    }
    
    .casino-table th,
    .casino-table td {
        padding: 10px 12px;
    }
    
    .payment-list li,
    .payout-list li {
        padding: 12px 16px;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 18px 20px;
    }
    
    .faq-question::after {
        right: 20px;
    }
    
    .faq-answer p {
        padding: 0 20px 18px 20px;
    }
}

/* Scroll Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-section {
    animation: fadeInUp 0.8s ease-out;
}

/* Hover Effects */
.content-img:hover,
.center-img:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

.casino-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

/* Focus States für Accessibility */
.nav-link:focus,
.btn:focus,
.faq-question:focus {
    outline: 2px solid #00ff88;
    outline-offset: 2px;
}

.author-bio {
    background-color: #2a2a2a;
    padding: 40px 0;
    border-top: 1px solid #ddd;
    margin-top: 40px;
}

.author-container {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.author-image img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #ccc;
}

.author-text {
    flex: 1;
    min-width: 250px;
}

.author-text h3 {
    margin-top: 0;
    font-size: 1.5em;
    color: #fffffff;
}

.author-text p {
    margin-top: 10px;
    font-size: 1em;
    color: #ffffff;
    line-height: 1.6;
}