* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #d4af37;
    --secondary-color: #1a1a2e;
    --accent-color: #e94560;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --gradient-primary: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    --box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

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

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

/* Header & Navigation */
.main-header {
    background: var(--gradient-dark);
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navigation-bar {
    padding: 15px 0;
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.site-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

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

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 8px 16px;
    border-radius: 5px;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.mobile-toggle {
    display: none;
    background: var(--primary-color);
    border: none;
    color: var(--secondary-color);
    font-size: 24px;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
}

/* Hero Section */
.hero-banner {
    background: var(--gradient-primary);
    padding: 80px 20px;
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
}

/* Statistics Block */
.statistics-block {
    padding: 60px 20px;
    background: var(--light-bg);
}

.section-heading {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.stat-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-color);
    opacity: 0.8;
}

/* Casino Rankings */
.casino-rankings {
    padding: 80px 20px;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 50px;
    opacity: 0.8;
}

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

.casino-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
}

.casino-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

.casino-card.premium {
    border: 3px solid var(--primary-color);
}

.casino-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: 600;
    z-index: 10;
}

.casino-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.casino-info {
    padding: 25px;
}

.casino-name {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.rating-display {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 20px;
}

.rating-display i {
    color: var(--primary-color);
    font-size: 18px;
}

.rating-score {
    margin-left: 10px;
    font-weight: 600;
    color: var(--text-color);
}

.casino-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.feature-tag {
    background: var(--light-bg);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-color);
}

.feature-tag i {
    color: var(--success-color);
    margin-right: 5px;
}

.bonus-highlight {
    background: var(--gradient-primary);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.bonus-amount {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.bonus-details {
    font-size: 14px;
    color: var(--secondary-color);
    opacity: 0.8;
}

.providers-list {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.8;
}

.casino-link-btn {
    display: block;
    text-align: center;
    background: var(--secondary-color);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.casino-link-btn:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

/* Comparison Table */
.comparison-table-section {
    padding: 80px 20px;
    background: var(--light-bg);
}

.table-wrapper {
    overflow-x: auto;
    box-shadow: var(--box-shadow);
    border-radius: 15px;
}

.bonus-comparison-table {
    width: 100%;
    background: var(--white);
    border-collapse: collapse;
}

.bonus-comparison-table th,
.bonus-comparison-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.bonus-comparison-table th {
    background: var(--secondary-color);
    color: var(--white);
    font-weight: 600;
}

.bonus-comparison-table tr:hover {
    background: var(--light-bg);
}

.speed-fast {
    color: var(--success-color);
    font-weight: 600;
}

.speed-medium {
    color: var(--warning-color);
    font-weight: 600;
}

.rating-badge {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
}

/* Providers Section */
.providers-section {
    padding: 80px 20px;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.provider-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.provider-icon {
    font-size: 56px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.provider-card h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.provider-card p {
    color: var(--text-color);
    line-height: 1.8;
}

/* Trust Section */
.trust-section {
    padding: 80px 20px;
    background: var(--light-bg);
}

.trust-intro {
    text-align: center;
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--text-color);
}

.trust-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.trust-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--box-shadow);
}

.trust-icon {
    font-size: 48px;
    color: var(--success-color);
    margin-bottom: 20px;
}

.trust-item h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.trust-item p {
    color: var(--text-color);
    line-height: 1.8;
}

/* Latest Posts */
.latest-posts {
    padding: 80px 20px;
}

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

.post-preview-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.post-thumbnail {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.post-content {
    padding: 25px;
}

.post-preview-card h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.post-excerpt {
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.8;
}

.read-more-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.read-more-link:hover {
    color: var(--secondary-color);
}

.view-all-container {
    text-align: center;
}

.view-all-btn {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.view-all-btn:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

/* Footer */
.main-footer {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 60px 20px 20px;
}

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

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.9;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 5px;
}

.company-registration {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

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

.disclaimer {
    margin-top: 10px;
    opacity: 0.8;
    font-size: 14px;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    padding: 25px;
    z-index: 2000;
    display: none;
}

.cookie-consent.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-text h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.cookie-text p {
    color: var(--text-color);
    margin-bottom: 10px;
}

.cookie-policy-link {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.accept-btn {
    background: var(--success-color);
    color: var(--white);
}

.customize-btn {
    background: var(--secondary-color);
    color: var(--white);
}

.decline-btn {
    background: var(--border-color);
    color: var(--text-color);
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 20px;
}

.modal-content-cookie {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    max-width: 600px;
    width: 100%;
}

.modal-content-cookie h3 {
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-size: 24px;
}

.cookie-option {
    margin-bottom: 25px;
}

.cookie-option label {
    display: flex;
    gap: 15px;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.cookie-option strong {
    display: block;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.cookie-option p {
    color: var(--text-color);
    font-size: 14px;
}

.modal-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

/* Page Hero */
.page-hero {
    background: var(--gradient-primary);
    padding: 80px 20px;
    text-align: center;
}

.page-title {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 20px;
    color: var(--secondary-color);
    opacity: 0.9;
}

/* Blog Layout */
.blog-content {
    padding: 60px 20px;
}

.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.blog-post-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-bottom: 40px;
}

.post-image-wrapper {
    position: relative;
}

.post-image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.post-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
}

.post-details {
    padding: 35px;
}

.post-title-main {
    font-size: 28px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    color: var(--text-color);
    opacity: 0.7;
}

.post-meta i {
    margin-right: 5px;
}

.post-description {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 25px;
}

.post-read-btn {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.post-read-btn:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

/* Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
}

.widget-title {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 20px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 12px;
}

.category-list a {
    color: var(--text-color);
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    transition: var(--transition);
}

.category-list a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.category-list i {
    margin-right: 10px;
    color: var(--primary-color);
}

.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.popular-post-item {
    display: flex;
    gap: 15px;
}

.popular-post-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.popular-post-info h4 {
    font-size: 15px;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.popular-date {
    font-size: 13px;
    color: var(--text-color);
    opacity: 0.7;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-item {
    background: var(--light-bg);
    color: var(--text-color);
    padding: 6px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.tag-item:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-form input {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
}

.newsletter-btn {
    background: var(--secondary-color);
    color: var(--white);
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-btn:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

/* About Page */
.about-hero {
    background: var(--gradient-dark);
}

.about-hero .page-title,
.about-hero .page-subtitle {
    color: var(--white);
}

.about-intro {
    padding: 80px 20px;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-heading {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-color);
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
}

.values-section {
    padding: 80px 20px;
    background: var(--light-bg);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--box-shadow);
}

.value-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-color);
    line-height: 1.8;
}

.team-section {
    padding: 80px 20px;
}

.team-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 50px;
}

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

.team-member-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

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

.team-member-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.team-member-card h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin: 20px 0 10px;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.member-bio {
    padding: 0 25px 25px;
    color: var(--text-color);
    line-height: 1.8;
}

.methodology-section {
    padding: 80px 20px;
    background: var(--light-bg);
}

.methodology-content {
    max-width: 900px;
    margin: 0 auto;
}

.methodology-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: start;
}

.step-number {
    background: var(--gradient-primary);
    color: var(--secondary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-details h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.step-details p {
    color: var(--text-color);
    line-height: 1.8;
}

.stats-about-section {
    padding: 80px 20px;
}

.stats-about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-about-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--box-shadow);
}

.stat-about-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.stat-about-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-about-label {
    font-size: 16px;
    color: var(--text-color);
}

.cta-section {
    padding: 80px 20px;
    background: var(--light-bg);
}

.cta-box {
    background: var(--gradient-primary);
    padding: 60px 40px;
    border-radius: 15px;
    text-align: center;
}

.cta-box h2 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-btn-large {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: var(--transition);
}

.cta-btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* Contact Page */
.contact-hero {
    background: var(--gradient-dark);
}

.contact-hero .page-title,
.contact-hero .page-subtitle {
    color: var(--white);
}

.contact-section {
    padding: 80px 20px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-heading {
    font-size: 32px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.contact-intro-text {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-info-items {
    margin-bottom: 40px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    background: var(--gradient-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 20px;
    color: var(--secondary-color);
}

.contact-details h3 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.contact-details p {
    color: var(--text-color);
    line-height: 1.6;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-hours {
    font-size: 14px;
    color: var(--text-color);
    opacity: 0.7;
}

.business-hours {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
}

.business-hours h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.form-heading {
    font-size: 28px;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.contact-form-main {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 8px;
}

.required {
    color: var(--accent-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-group label {
    display: flex;
    align-items: start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: underline;
}

.submit-btn {
    background: var(--secondary-color);
    color: var(--white);
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.map-section {
    padding: 80px 20px;
    background: var(--light-bg);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.faq-contact-section {
    padding: 80px 20px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
}

.faq-item h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item i {
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-color);
    line-height: 1.8;
}

.thank-you-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 20px;
}

.thank-you-modal.show {
    display: flex;
}

.modal-content-thank {
    background: var(--white);
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    max-width: 500px;
}

.modal-icon {
    font-size: 72px;
    color: var(--success-color);
    margin-bottom: 20px;
}

.modal-content-thank h2 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.modal-content-thank p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 30px;
}

.modal-close-btn {
    background: var(--secondary-color);
    color: var(--white);
    padding: 12px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close-btn:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

/* Single Post */
.post-single {
    background: var(--white);
}

.post-header-section {
    padding: 40px 20px 20px;
    background: var(--light-bg);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--text-color);
    text-decoration: none;
}

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

.separator {
    color: var(--text-color);
    opacity: 0.5;
}

.post-title-single {
    font-size: 42px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.post-meta-single {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    color: var(--text-color);
    opacity: 0.7;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-featured-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.post-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content-wrapper {
    padding: 60px 20px;
}

.post-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
}

.post-content-text {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-color);
}

.lead-paragraph {
    font-size: 20px;
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 30px;
    line-height: 1.7;
}

.post-content-text h2 {
    font-size: 32px;
    color: var(--secondary-color);
    margin: 40px 0 20px;
}

.post-content-text h3 {
    font-size: 24px;
    color: var(--secondary-color);
    margin: 30px 0 15px;
}

.post-content-text p {
    margin-bottom: 20px;
}

.post-content-text ul,
.post-content-text ol {
    margin: 20px 0 20px 30px;
}

.post-content-text li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.post-conclusion {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
}

.post-conclusion h2 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.post-tags {
    margin: 40px 0;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.post-tags h3 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.post-tags .tag {
    display: inline-block;
    background: var(--light-bg);
    color: var(--text-color);
    padding: 6px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    margin-right: 10px;
    margin-bottom: 10px;
    transition: var(--transition);
}

.post-tags .tag:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.author-bio-section {
    display: flex;
    gap: 20px;
    background: var(--light-bg);
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
}

.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.author-info p {
    color: var(--text-color);
    line-height: 1.8;
}

.related-posts-section {
    margin-top: 60px;
}

.related-posts-section h2 {
    font-size: 32px;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.related-post-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.related-post-card:hover {
    transform: translateY(-5px);
}

.related-post-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-post-card h3 {
    padding: 20px 20px 10px;
    font-size: 18px;
    color: var(--secondary-color);
}

.related-link {
    display: block;
    padding: 0 20px 20px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.post-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sticky-widget {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
}

.table-of-contents {
    list-style: none;
}

.table-of-contents li {
    margin-bottom: 12px;
}

.table-of-contents a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.table-of-contents a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.sidebar-casino-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-casino-item {
    padding: 15px;
    background: var(--light-bg);
    border-radius: 10px;
}

.sidebar-casino-item strong {
    display: block;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.rating-small {
    display: inline-block;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 10px;
}

.sidebar-casino-item p {
    font-size: 14px;
    color: var(--text-color);
    margin-top: 8px;
}

.providers-list-sidebar {
    list-style: none;
    counter-reset: provider-counter;
}

.providers-list-sidebar li {
    counter-increment: provider-counter;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 35px;
}

.providers-list-sidebar li::before {
    content: counter(provider-counter);
    position: absolute;
    left: 0;
    background: var(--primary-color);
    color: var(--secondary-color);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .blog-layout,
    .post-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .post-sidebar,
    .blog-sidebar {
        position: static;
    }
    
    .about-content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--secondary-color);
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 12px;
    }
    
    .hero-banner {
        flex-direction: column;
        padding: 50px 20px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-heading {
        font-size: 28px;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .casino-grid,
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
    }
    
    .post-title-single {
        font-size: 28px;
    }
    
    .post-meta-single {
        gap: 15px;
    }
    
    .post-featured-image {
        height: 300px;
    }
    
    .table-wrapper {
        overflow-x: auto;
    }
    
    .bonus-comparison-table {
        min-width: 600px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }
    
    .stat-number,
    .stat-about-number {
        font-size: 32px;
    }
    
    .casino-name {
        font-size: 20px;
    }
    
    .bonus-amount {
        font-size: 18px;
    }
    
    .post-title-single {
        font-size: 24px;
    }
}