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

:root {
    --primary-color: #FF6B35;
    --secondary-color: #004E89;
    --accent-color: #F7B32B;
    --dark-bg: #1A1A2E;
    --light-bg: #F5F5F5;
    --text-dark: #2C3E50;
    --text-light: #FFFFFF;
    --border-radius: 12px;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-bg);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--secondary-color) 100%);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.logo h1 {
    color: var(--text-light);
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #FF6B35 0%, #F7B32B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    transition: var(--transition);
}

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

.main-nav li {
    position: relative;
}

.main-nav > ul > li > a {
    color: var(--text-light);
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 8px;
    transition: var(--transition);
}

.main-nav > ul > li > a:hover {
    background-color: rgba(255, 107, 53, 0.2);
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    min-width: 250px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 100;
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li {
    list-style: none;
}

.submenu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    font-size: 14px;
    transition: var(--transition);
}

.submenu a:hover {
    background-color: var(--light-bg);
    color: var(--primary-color);
    padding-left: 25px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-bg) 100%);
    color: var(--text-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,96C1248,75,1344,53,1392,42.7L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-bonus-hint {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 20px;
    display: inline-block;
    margin-top: 20px;
}

.hero-bonus-hint p {
    margin: 0;
    font-size: 16px;
}

/* Top Casinos Section */
.top-casinos {
    padding: 80px 0;
    background-color: white;
}

.casino-list {
    display: grid;
    gap: 25px;
}

.casino-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.casino-rank {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    min-width: 80px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.casino-info {
    flex: 1;
}

.casino-info h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.casino-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.stars {
    color: var(--accent-color);
    font-size: 18px;
}

.rating-number {
    background-color: var(--secondary-color);
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.casino-bonus {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 179, 43, 0.1) 100%);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 4px solid var(--primary-color);
}

.bonus-label {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 3px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
    margin-right: 10px;
}

.casino-bonus strong {
    color: var(--text-dark);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Bonus Comparison Section */
.bonus-comparison {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.bonus-comparison h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
    text-align: center;
}

.bonus-comparison > .container > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 30px;
}

.criteria-list {
    max-width: 800px;
    margin: 0 auto 50px;
    list-style: none;
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.criteria-list li {
    padding: 12px 0;
    border-bottom: 1px solid #E0E0E0;
    font-size: 16px;
}

.criteria-list li:last-child {
    border-bottom: none;
}

.criteria-list li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 15px;
    font-size: 20px;
}

.bonus-section {
    margin-bottom: 50px;
}

.bonus-section h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.bonus-section p {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.8;
}

.bonus-table {
    width: 100%;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.bonus-table thead {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-bg) 100%);
    color: white;
}

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

.bonus-table td {
    padding: 15px;
    border-bottom: 1px solid #E0E0E0;
}

.bonus-table tbody tr:hover {
    background-color: rgba(255, 107, 53, 0.05);
}

.bonus-table tbody tr:last-child td {
    border-bottom: none;
}

.bonus-table a {
    color: var(--primary-color);
    text-decoration: underline;
}

.bonus-table a:hover {
    color: var(--secondary-color);
}

/* Other Comparatives Section */
.other-comparatives {
    padding: 80px 0;
    background-color: white;
}

.other-comparatives h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
    text-align: center;
}

.other-comparatives > .container > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
}

.comparative-section {
    background: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
}

.comparative-section h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.comparative-section p {
    margin-bottom: 20px;
    font-size: 16px;
}

.comparative-section ul {
    list-style: none;
    padding-left: 0;
}

.comparative-section ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
}

.comparative-section ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 20px;
}

/* Experts Section */
.experts {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, #E8E8E8 100%);
}

.experts h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--text-dark);
    text-align: center;
}

.expert-profiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}

.expert-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.expert-card h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.expert-card p {
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 15px;
}

.expert-card p:last-child {
    margin-bottom: 0;
}

/* Hidden Bonus Section */
.hidden-bonus {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
}

.hidden-bonus-content {
    text-align: center;
}

.hidden-bonus-content p {
    font-size: 20px;
    color: white;
    margin: 0;
}

.bonus-link {
    color: white;
    font-weight: 700;
    text-decoration: underline;
    transition: var(--transition);
}

.bonus-link:hover {
    opacity: 0.8;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    padding: 60px 0 30px;
}

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    font-size: 14px;
}

.footer-column ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

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

.footer-bottom p {
    margin: 0;
    opacity: 0.7;
    font-size: 14px;
}

