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

:root {
    --primary-color: #1a5f7a;
    --secondary-color: #159895;
    --accent-color: #57c5b6;
    --gold-color: #ffc107;
    --dark-color: #0d2137;
    --light-color: #f8f9fa;
    --text-color: #333;
    --text-light: #666;
    --white: #ffffff;
    --success-color: #28a745;
    --warning-color: #fd7e14;
    --border-radius: 8px;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* Header Styles */
header {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.logo span {
    color: var(--gold-color);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 0;
}

nav a:hover {
    color: var(--gold-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Meta Box */
.meta-box {
    background: linear-gradient(135deg, var(--dark-color) 0%, #1a3a5c 100%);
    border-radius: var(--border-radius);
    padding: 20px 25px;
    margin: 30px 0;
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--white);
    box-shadow: var(--shadow);
}

.meta-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.meta-info h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.meta-info p {
    font-size: 0.9rem;
    opacity: 0.85;
}

.meta-info .role {
    color: var(--gold-color);
    font-weight: 500;
}

/* Main Content */
main {
    padding: 40px 0;
}

.content-section {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.content-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--accent-color);
}

.content-section h3 {
    color: var(--dark-color);
    font-size: 1.3rem;
    margin: 25px 0 15px;
}

.content-section p {
    margin-bottom: 15px;
    color: var(--text-light);
}

/* Casino Table */
.casino-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.casino-table thead {
    background: linear-gradient(135deg, var(--dark-color), var(--primary-color));
    color: var(--white);
}

.casino-table th {
    padding: 18px 15px;
    text-align: left;
    font-weight: 600;
}

.casino-table tbody tr {
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: all 0.3s ease;
}

.casino-table tbody tr:hover {
    background: linear-gradient(135deg, #f0f9ff, #e6f7ff);
    transform: scale(1.01);
}

.casino-table td {
    padding: 20px 15px;
    vertical-align: middle;
}

.casino-name {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.casino-rank {
    background: var(--gold-color);
    color: var(--dark-color);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.bonus-highlight {
    background: linear-gradient(135deg, var(--success-color), #20c997);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
}

.best-badge {
    background: linear-gradient(135deg, var(--gold-color), #ffdb4d);
    color: var(--dark-color);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 8px;
}

.claim-btn {
    background: linear-gradient(135deg, var(--success-color), #20c997);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
}

.claim-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

.deposit-note {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 5px;
}

/* About Page - Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.team-member {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 auto 20px;
}

.team-member h3 {
    color: var(--dark-color);
    margin-bottom: 5px;
}

.team-member .role {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.team-member p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.contact-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-color);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--dark-color);
    margin-bottom: 5px;
}

.contact-details p,
.contact-details a {
    color: var(--text-light);
}

.contact-details a:hover {
    color: var(--primary-color);
}

/* Privacy Policy */
.privacy-content h2 {
    margin-top: 30px;
}

.privacy-content ul {
    margin: 15px 0;
    padding-left: 25px;
}

.privacy-content li {
    margin-bottom: 10px;
    color: var(--text-light);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--dark-color) 0%, #0a1929 100%);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--gold-color);
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-section a {
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--gold-color);
}

.footer-contact p {
    margin-bottom: 10px;
}

.responsible-gaming {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-top: 30px;
}

.responsible-gaming h4 {
    color: var(--warning-color);
    margin-bottom: 15px;
    border-bottom-color: var(--warning-color);
}

.responsible-gaming p {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.responsible-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.responsible-links a {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.responsible-links a:hover {
    background: var(--warning-color);
    color: var(--dark-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.age-badge {
    display: inline-block;
    background: #dc3545;
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    line-height: 40px;
    font-weight: 700;
    margin-top: 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2rem;
    }

    .casino-table {
        font-size: 0.9rem;
    }

    .casino-table th,
    .casino-table td {
        padding: 12px 10px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark-color);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    nav ul.active {
        display: flex;
    }

    .hero {
        padding: 40px 0;
    }

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

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

    .meta-box {
        flex-direction: column;
        text-align: center;
    }

    .content-section {
        padding: 25px;
    }

    .casino-table-wrapper {
        overflow-x: auto;
    }

    .casino-table {
        min-width: 600px;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo {
        font-size: 1.2rem;
    }

    .hero h1 {
        font-size: 1.4rem;
    }

    .content-section h2 {
        font-size: 1.4rem;
    }

    .claim-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

/* Clickable Row */
.clickable-row {
    cursor: pointer;
}

.clickable-row a {
    text-decoration: none;
    color: inherit;
}

/* Warning Box */
.warning-box {
    background: linear-gradient(135deg, #fff3cd, #ffeeba);
    border-left: 4px solid var(--warning-color);
    padding: 20px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    margin: 20px 0;
}

.warning-box p {
    color: #856404;
    margin: 0;
}
