/* ===== CSS Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

/* ===== Typography ===== */
h1 {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.2 !important;
    color: #2c3e50 !important;
}

h2 {
    font-size: 2rem !important;
    font-weight: 700 !important;
    margin-bottom: 1.5rem !important;
    margin-top: 2rem !important;
    color: seagreen !important;
    line-height: 1.3 !important;
}

h3 {
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
    margin-top: 1.5rem !important;
    color: #2c3e50 !important;
    line-height: 1.4 !important;
}

h4 {
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
    color: seagreen !important;
}

p {
    margin-bottom: 1rem;
    font-size: 18px;
    line-height: 1.7;
}

strong {
    font-weight: 600;
    color: seagreen;
}

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

/* ===== Header & Navigation ===== */
.site-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    width: 50px;
    height: 50px;
    box-shadow: none !important;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: seagreen;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger {
    width: 25px;
    height: 3px;
    background-color: seagreen;
    border-radius: 3px;
    transition: all 0.3s ease;
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background-color: seagreen;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger::before {
    transform: translateY(-8px);
}

.hamburger::after {
    transform: translateY(8px);
}

.nav-menu {
    display: flex;
    list-style: none !important;
    gap: 2rem;
    align-items: center;
    margin: 0 !important;
    padding: 0 !important;
}

.nav-menu li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.nav-menu li::before,
.nav-menu li::after,
.nav-menu li::marker {
    display: none !important;
    content: none !important;
}

.nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-menu a:hover {
    color: seagreen;
}

.cta-buttons {
    display: flex;
    gap: 0.5rem;
    list-style: none !important;
}

.btn-cta {
    padding: 0.6rem 1.2rem !important;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: center;
}

.btn-primary {
    background-color: seagreen;
    color: #fff !important;
}

.btn-primary:hover {
    background-color: #2e8b57;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: aqua;
    color: #2c3e50 !important;
}

.btn-secondary:hover {
    background-color: #00e6e6;
    transform: translateY(-2px);
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('wie-man-ein-online-casino-mit-skrill-auswahlt_6358118400.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4rem 20px !important;
    margin-bottom: 3rem !important;
}

.hero-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.9) 0%, rgba(0, 255, 255, 0.7) 100%) !important;
    z-index: 1 !important;
}

.hero-content {
    position: relative !important;
    z-index: 2 !important;
    max-width: 800px !important;
    text-align: center !important;
    color: #fff !important;
    padding: 2rem !important;
}

.hero-content h1 {
    color: #fff !important;
    font-size: 2.8rem !important;
    margin-bottom: 1.5rem !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.hero-content p {
    color: #fff !important;
    font-size: 1.2rem !important;
    margin-bottom: 1rem !important;
    line-height: 1.6 !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3) !important;
}

.hero-btn {
    display: inline-block !important;
    margin-top: 1.5rem !important;
    padding: 1rem 2.5rem !important;
    background-color: aqua !important;
    color: #2c3e50 !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    border-radius: 30px !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
    text-align: center !important;
}

.hero-btn:hover {
    background-color: #00e6e6 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3) !important;
}

/* ===== Main Content ===== */
.main-content {
    background-color: #fff;
}

.intro-section {
    padding: 3rem 0;
    background-color: #f9f9f9;
}

.content-section {
    padding: 4rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.content-section:last-child {
    border-bottom: none;
}

/* ===== Cards ===== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.info-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-icon {
    font-size: 2.5rem;
    color: aqua;
    margin-bottom: 1rem;
    text-align: center;
}

.card-icon i {
    color: aqua;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.payment-card {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid seagreen;
}

/* ===== Lists ===== */
ul.styled-list,
ol.styled-list {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 1.5rem 0 !important;
}

ul.styled-list li,
ol.styled-list li {
    position: relative;
    padding-left: 2rem !important;
    margin-bottom: 1rem !important;
    list-style: none !important;
    font-size: 18px;
    line-height: 1.7;
}

ul.styled-list li::before {
    content: '\002B' !important;
    position: absolute !important;
    left: 0 !important;
    color: aqua !important;
    font-weight: bold !important;
    font-size: 1.5rem !important;
}

ul.styled-list li::marker,
ol.styled-list li::marker {
    display: none !important;
    content: none !important;
}

ol.styled-list {
    counter-reset: list-counter;
}

ol.styled-list li {
    counter-increment: list-counter;
}

ol.styled-list li::before {
    content: counter(list-counter) !important;
    position: absolute !important;
    left: 0 !important;
    color: aqua !important;
    font-weight: bold !important;
    font-size: 1.2rem !important;
}

/* ===== Tables ===== */
.table-container {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    min-width: 600px;
}

thead {
    background-color: seagreen;
    color: #fff;
}

thead th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 16px;
}

tbody tr {
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.3s ease;
}

tbody tr:hover {
    background-color: #f9f9f9;
}

tbody td {
    padding: 1rem;
    font-size: 16px;
}

tbody tr:last-child {
    border-bottom: none;
}

/* ===== Images ===== */
picture {
    display: block;
    margin: 2rem 0;
}

picture img,
img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.logo-img,
.footer-logo {
    box-shadow: none !important;
}

/* ===== CTA Section ===== */
.cta-section {
    text-align: center;
    margin: 3rem 0;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, seagreen 0%, aqua 100%);
    border-radius: 15px;
}

.closing-text {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 2rem;
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #fff;
    color: seagreen !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* ===== Footer ===== */
.site-footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    color: aqua !important;
    margin-bottom: 1rem !important;
    font-size: 1.2rem !important;
}

.footer-column p {
    color: #ecf0f1;
    font-size: 16px;
    line-height: 1.6;
}

.footer-column ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
    list-style: none !important;
}

.footer-column ul li::before,
.footer-column ul li::after,
.footer-column ul li::marker {
    display: none !important;
    content: none !important;
}

.footer-column ul li a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: aqua;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-logo {
    width: 40px;
    height: 40px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    color: #ecf0f1;
    font-size: 14px;
    margin: 0.5rem 0;
}

.disclaimer {
    font-style: italic;
    color: aqua;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        max-height: 500px;
        padding: 1rem 0;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 0.5rem 0;
    }

    .nav-menu a {
        display: block;
        padding: 0.5rem 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0.5rem 1rem;
    }

    .btn-cta {
        width: 100%;
    }

    .hero-content h1 {
        font-size: 2rem !important;
    }

    .hero-content p {
        font-size: 1rem !important;
    }

    h1 {
        font-size: 2rem !important;
    }

    h2 {
        font-size: 1.6rem !important;
    }

    h3 {
        font-size: 1.3rem !important;
    }

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

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

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }

    .hero-content h1 {
        font-size: 1.6rem !important;
    }

    .hero-content p {
        font-size: 0.9rem !important;
    }

    .hero-btn {
        padding: 0.8rem 1.5rem !important;
        font-size: 1rem !important;
    }

    .content-section {
        padding: 2rem 0;
    }

    .info-card {
        padding: 1.5rem;
    }

    .table-container {
        font-size: 14px;
    }

    thead th,
    tbody td {
        padding: 0.75rem 0.5rem;
        font-size: 14px;
    }
}

/* Ensure text readability */
.hero-section * {
    color: #fff !important;
}

/* Fix for list markers in nav and footer */
nav ul,
nav ul li,
footer ul,
footer ul li {
    list-style: none !important;
    list-style-type: none !important;
}

nav ul li::before,
nav ul li::after,
nav ul li::marker,
footer ul li::before,
footer ul li::after,
footer ul li::marker {
    display: none !important;
    content: none !important;
}
