/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
}

/* Header Styles */
.header {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #00d4ff;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #0099cc);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 2rem 80px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.hero-image {
    position: relative;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-chip, .floating-dice, .floating-cards {
    position: absolute;
    width: 60px;
    height: 60px;
    animation: float 6s ease-in-out infinite;
}

.floating-chip {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.floating-dice {
    top: 60%;
    left: 5%;
    animation-delay: 2s;
}

.floating-cards {
    top: 80%;
    right: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.6);
}

.cta-button.secondary {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    margin: 2rem auto;
    display: block;
    width: fit-content;
}

.cta-button.secondary:hover {
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}

.cta-button.final {
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
    margin: 3rem auto;
    display: block;
    width: fit-content;
}

.cta-button.final:hover {
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.6);
}

/* Main Content Styles */
.main-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.content-section {
    text-align: center;
}

/* Common text styles for main content */
.content-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 3rem 0 1.5rem;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 2.5rem 0 1rem;
    color: #00d4ff;
}

.content-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #e0e0e0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.content-section ul, .content-section ol {
    text-align: left;
    max-width: 900px;
    margin: 1.5rem auto;
    padding-left: 2rem;
}

.content-section li {
    margin-bottom: 0.8rem;
    color: #e0e0e0;
    font-size: 1.1rem;
}

.content-section strong {
    color: #00d4ff;
}

.content-section a {
    color: #00d4ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.content-section a:hover {
    color: #00ff88;
}

/* Table Styles */
.table-container {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 1rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

th {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
}

td {
    color: #e0e0e0;
    font-size: 1rem;
}

tr:hover {
    background: rgba(0, 212, 255, 0.1);
}

/* Image Styles */
.image-container {
    margin: 3rem 0;
    text-align: center;
}

.content-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Footer Styles */
.footer {
    background: rgba(15, 15, 30, 0.95);
    margin-top: 4rem;
    padding: 3rem 2rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    color: #00d4ff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.providers-grid, .payment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    justify-items: center;
}

.provider-logo, .payment-logo {
    width: 80px;
    height: 50px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 5px;
    transition: transform 0.3s ease;
}

.provider-logo:hover, .payment-logo:hover {
    transform: scale(1.1);
}

.age-restriction {
    font-size: 1.2rem;
    color: #ff6b35;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
}

.responsible-gambling {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
}

.responsible-gambling a {
    color: #00d4ff;
    text-decoration: none;
    font-weight: 500;
}

.responsible-gambling a:hover {
    color: #00ff88;
}

.contact {
    text-align: center;
    margin-top: 1rem;
    color: #e0e0e0;
}

.contact a {
    color: #00d4ff;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(26, 26, 46, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .content-section h2 {
        font-size: 2rem;
    }

    .content-section h3 {
        font-size: 1.5rem;
    }

    .content-section p, .content-section li {
        font-size: 1rem;
    }

    .main-content {
        padding: 1rem;
    }

    .table-container {
        font-size: 0.9rem;
    }

    th, td {
        padding: 0.5rem;
    }

    .providers-grid, .payment-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 1rem 60px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .nav-container {
        padding: 1rem;
    }

    .providers-grid, .payment-grid {
        grid-template-columns: 1fr;
    }

    .provider-logo, .payment-logo {
        width: 100px;
        height: 60px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation for content visibility */
.content-section {
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.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;
}