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

:root {
    --primary-color: #d4145a;
    --secondary-color: #1a1a2e;
    --accent-color: #fbb034;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #16213e;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --danger-color: #e74c3c;
    --gradient-primary: linear-gradient(135deg, #d4145a 0%, #fbb034 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 20px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
    font-size: 16px;
}

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

.main-header {
    background: var(--gradient-dark);
    padding: 15px 0;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand-logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-color);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-color);
}

.font-control {
    background: transparent;
    border: 1px solid var(--text-light);
    color: var(--text-light);
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.font-control:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

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

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

.hero-banner {
    background: var(--gradient-primary);
    padding: 80px 0;
    text-align: center;
    color: var(--text-light);
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-gradient {
    background: var(--gradient-dark);
    color: var(--text-light);
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--text-light);
    transition: var(--transition);
    display: inline-block;
}

.btn-outline:hover {
    background: var(--text-light);
    color: var(--primary-color);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

.featured-section,
.comparison-table-section,
.providers-section,
.info-section,
.blog-preview,
.blog-section,
.about-intro,
.team-section,
.values-section,
.process-section,
.contact-section {
    padding: 80px 0;
}

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

.casino-card,
.blog-preview-card,
.blog-article-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.casino-card:hover,
.blog-preview-card:hover,
.blog-article-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.casino-image,
.blog-preview-image,
.article-image {
    position: relative;
    overflow: hidden;
}

.casino-image img,
.blog-preview-image img,
.article-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.casino-card:hover .casino-image img,
.blog-preview-card:hover .blog-preview-image img,
.blog-article-card:hover .article-image img {
    transform: scale(1.1);
}

.badge-top {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.article-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

.casino-info,
.blog-preview-content,
.article-content {
    padding: 25px;
}

.casino-info h3,
.blog-preview-content h3,
.article-content h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.rating-stars i {
    color: var(--accent-color);
}

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

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

.feature-tag {
    background: var(--bg-light);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 5px;
}

.feature-tag i {
    color: var(--primary-color);
}

.casino-desc {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-card,
.btn-article,
.btn-read-more {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--text-light);
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.btn-card:hover,
.btn-article:hover,
.btn-read-more:hover {
    transform: translateX(5px);
}

.table-responsive {
    overflow-x: auto;
    margin-top: 30px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: var(--shadow-md);
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table thead {
    background: var(--gradient-dark);
    color: var(--text-light);
}

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

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

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

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

.rating-stars-small {
    display: flex;
    gap: 3px;
}

.rating-stars-small i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.btn-table {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.btn-table:hover {
    background: var(--accent-color);
    color: var(--text-dark);
}

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

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

.provider-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.provider-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.provider-card p {
    color: #666;
    line-height: 1.6;
}

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

.info-card,
.value-card {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.info-card:hover,
.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.info-icon,
.value-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.info-card h3,
.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.info-card p,
.value-card p {
    color: #666;
    line-height: 1.7;
}

.blog-date,
.article-meta span {
    color: #888;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.article-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.text-center {
    text-align: center;
}

.main-footer {
    background: var(--gradient-dark);
    color: var(--text-light);
    padding: 60px 0 20px;
}

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

.footer-logo {
    margin-bottom: 20px;
    width: 20%;
    margin-left: 70px;
}

.footer-desc {
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-contact p {
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-links li {
    margin: 10px 0;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-reg {
    margin-top: 15px;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

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

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 25px;
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    display: none;
}

.cookie-consent.show {
    display: block;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

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

.cookie-text h3 {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-text p {
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
}

.cookie-text a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

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

.btn-cookie.accept {
    background: var(--success-color);
    color: var(--text-light);
}

.btn-cookie.customize {
    background: var(--accent-color);
    color: var(--text-dark);
}

.btn-cookie.decline {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

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

.cookie-settings {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    max-width: 500px;
    width: 90%;
    z-index: 10000;
    display: none;
}

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

.cookie-settings h3 {
    margin-bottom: 25px;
    color: var(--text-dark);
}

.cookie-option {
    margin: 20px 0;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 10px;
}

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

.cookie-desc {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

.cookie-settings-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: flex-end;
}

.page-hero {
    background: var(--gradient-primary);
    padding: 60px 0;
    text-align: center;
    color: var(--text-light);
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
}

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

.about-intro-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-intro-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #666;
}

.mission-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.feature-point {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-dark);
}

.feature-point i {
    color: var(--success-color);
    font-size: 1.2rem;
}

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

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

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

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

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

.team-card h3 {
    margin: 20px 0 10px;
    color: var(--text-dark);
    font-size: 1.3rem;
}

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

.team-card p {
    padding: 0 20px 25px;
    color: #666;
    line-height: 1.6;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 50px;
    width: 2px;
    height: calc(100% + 40px);
    background: var(--border-color);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-number {
    min-width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    z-index: 1;
}

.timeline-content h3 {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.timeline-content p {
    color: #666;
    line-height: 1.7;
}

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

.contact-info-side h2,
.contact-form-side h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-detail-box {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 10px;
}

.contact-detail-icon {
    min-width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.contact-detail-text h3 {
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.contact-detail-text p {
    color: #666;
    line-height: 1.6;
}

.contact-map {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

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

.btn-submit {
    background: var(--gradient-primary);
    color: var(--text-light);
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.success-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: 10000;
}

.success-modal.show {
    display: flex;
}

.success-modal-content {
    background: #fff;
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    max-width: 500px;
    width: 90%;
}

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

.success-modal-content h2 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.success-modal-content p {
    margin-bottom: 25px;
    color: #666;
    line-height: 1.6;
}

.btn-modal-close {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.btn-modal-close:hover {
    background: var(--accent-color);
    color: var(--text-dark);
}

.post-container {
    padding: 60px 0;
    background: var(--bg-light);
}

.post-breadcrumb {
    margin-bottom: 20px;
    color: #888;
    font-size: 0.95rem;
}

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

.post-breadcrumb i {
    margin: 0 8px;
    font-size: 0.8rem;
}

.post-header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.3;
}

.post-meta-info {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.post-meta-info span {
    color: #888;
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-featured-image {
    margin: 40px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.post-featured-image img {
    width: 100%;
    height: auto;
}

.post-content {
    background: #fff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    line-height: 1.9;
}

.lead-paragraph {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
    font-weight: 500;
    line-height: 1.8;
}

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

.post-content p {
    margin-bottom: 20px;
    color: #666;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.post-nav-link {
    flex: 1;
    min-width: 250px;
    padding: 25px;
    background: #fff;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.post-nav-link:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.post-nav-link.next {
    text-align: right;
}

.nav-label {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    font-weight: 600;
}

.nav-title {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
}

.back-to-blog {
    margin-top: 40px;
    text-align: center;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.btn-back:hover {
    background: var(--accent-color);
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: var(--secondary-color);
        width: 100%;
        padding: 30px;
        transition: var(--transition);
    }

    .nav-links.active {
        left: 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .casino-grid,
    .blog-preview-grid,
    .blog-articles-grid {
        grid-template-columns: 1fr;
    }

    .about-intro-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .table-responsive {
        overflow-x: scroll;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .post-content {
        padding: 30px 20px;
    }

    .post-header h1 {
        font-size: 1.8rem;
    }

    .post-navigation {
        flex-direction: column;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .btn-gradient,
    .btn-outline {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}