/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f1419 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #ffd700;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.navigation {
    display: none;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
    font-size: 0.9rem;
}

.nav-link:hover {
    color: #ffd700;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ffd700;
    transition: all 0.3s ease;
}

/* Main Content */
.main-content {
    margin-top: 80px;
}

.hero-section {
    padding: 4rem 0;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><radialGradient id="g" cx="50%" cy="50%"><stop offset="0%" stop-color="rgba(255,215,0,0.1)"/><stop offset="100%" stop-color="transparent"/></radialGradient></defs><rect width="100" height="100" fill="url(%23g)"/></svg>');
    text-align: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-img, .content-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.hero-img:hover, .content-image:hover {
    transform: scale(1.02);
}

/* Content Section Styles */
.content-section {
    padding: 3rem 0;
}

h1 {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: bold;
}

h2 {
    font-size: 2rem;
    color: #ffd700;
    margin: 2.5rem 0 1.5rem 0;
    text-align: center;
}

h3 {
    font-size: 1.4rem;
    color: #ffed4e;
    margin: 2rem 0 1rem 0;
    text-align: center;
}

h4 {
    font-size: 1.2rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #e0e0e0;
}

ul {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    color: #e0e0e0;
    text-align: left;
}

ul li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-size: 1.2rem;
}

/* Table Styles */
.table-responsive {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.casino-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(26, 26, 46, 0.9);
    border-radius: 10px;
    overflow: hidden;
}

.casino-table th {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a1a2e;
    font-weight: bold;
    padding: 1rem;
    text-align: left;
}

.casino-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    color: #e0e0e0;
}

.casino-table tr:hover {
    background: rgba(255, 215, 0, 0.1);
}

/* Button Styles */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a1a2e;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    background: linear-gradient(45deg, #ffed4e, #ffd700);
}

.cta-button.secondary {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
}

.cta-button.secondary:hover {
    background: linear-gradient(45deg, #764ba2, #667eea);
    box-shadow: 0 8px 25px rgba(118, 75, 162, 0.5);
}

.cta-section {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem 0;
}

/* Image Containers */
.image-container {
    text-align: center;
    margin: 2rem 0;
}

.content-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* FAQ Styles */
.faq-section {
    margin: 3rem 0;
    padding: 2rem 0;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
    background: rgba(26, 26, 46, 0.5);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    color: #ffd700;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 215, 0, 0.1);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    text-align: left;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffd700;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(15, 20, 25, 0.7);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 1.5rem;
    margin: 0;
    text-align: left;
    color: #e0e0e0;
}

/* Footer Styles */
.footer {
    background: rgba(15, 20, 25, 0.95);
    border-top: 2px solid #ffd700;
    padding: 3rem 0 1rem 0;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.providers-grid, .payment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.provider-logo, .payment-logo {
    width: 100%;
    height: 50px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px;
    transition: transform 0.3s ease;
}

.provider-logo:hover, .payment-logo:hover {
    transform: scale(1.05);
    background: rgba(255, 215, 0, 0.1);
}

.responsible-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.responsible-links a {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.responsible-links a:hover {
    color: #ffed4e;
}

.begambleaware-logo {
    width: 150px;
    height: auto;
    margin-top: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    color: #b0b0b0;
}

.footer-bottom p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.last-updated {
    font-style: italic;
    color: #888;
}

/* Responsive Design */
@media (min-width: 768px) {
    .navigation {
        display: block;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }
    
    h1 {
        font-size: 3rem;
        text-align: left;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero-text p {
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .nav-list {
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 1rem;
    }
    
    h1 {
        font-size: 3.5rem;
    }
    
    .providers-grid, .payment-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 767px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        padding: 0.8rem 0;
    }
    
    .hero-section {
        padding: 2rem 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .casino-table {
        font-size: 0.9rem;
    }
    
    .casino-table th,
    .casino-table td {
        padding: 0.8rem 0.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .providers-grid, .payment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-section > * {
    animation: fadeIn 0.6s ease forwards;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a2e;
}

::-webkit-scrollbar-thumb {
    background: #ffd700;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ffed4e;
}
.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;
}