/*
 * Основные стили для темы Casino Hub PT
 * Адаптированы из оригинального styles.css с поддержкой WordPress
 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: #0C0F1F;;
    color: #ffffff;
    position: relative;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(64, 224, 208, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(147, 112, 219, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(0, 191, 255, 0.01) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

header {
    background: #0B132B;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    color: white;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-container {
    flex-shrink: 0;
}

.logo-container a {
    display: block;
}

.site-logo {
    width: 180px;
    height: auto;
}

.header-text {
    text-align: center;
    flex-grow: 1;
    padding-right: 180px; 
}

header h1 {
    color: #ffffff;
    font-size: 2.5em;
    margin: 0 0 10px 0;
}

header p {
    color: #222222;
    font-size: 1.2em;
    margin: 0;
}

@media (max-width: 768px) {
    header {
        padding: 1rem;
    }
    
    .header-content {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .site-logo {
        width: 150px;
    }
    
    .header-text {
        text-align: center;
        padding-right: 0;
    }
    
    header h1 {
        font-size: 2em;
    }
    
    header p {
        font-size: 1.1em;
    }
}

.casino-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    padding-bottom: 80px;
    position: relative;
    z-index: 1;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#casino-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.casino-card {
    position: relative;
    background: #ffffff;;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow: hidden;
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.casino-card::before,
.casino-card:hover::before,
.cta-button::after,
.cta-button:hover::after {
    display: none;
}

.casino-logo {
    width: 100%;
    height: 150px;
    object-fit: contain;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
    padding: 8px;
    border-radius: 12px;
    filter: brightness(0.95) contrast(1.1);
}

.casino-logo:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.05);
    filter: brightness(1) contrast(1.2);
}

.casino-header {
    text-align: center;
    margin-bottom: 20px;
}

.rating-container {
    background: rgba(255,255,255,0.05);
    padding: 10px;
    border-radius: 8px;
    margin: 15px 0;
    text-align: center;
}

.rating-text {
    margin-top: 5px;
    color: #ffd700;
}

.bonus-amount {
    text-align: center;
    padding: 20px;
    background: linear-gradient(145deg, rgba(101, 64, 224, 0.1), rgba(0, 191, 255, 0.15));
    border-radius: 12px;
    border: 2px solid rgba(64, 224, 208, 0.2);
    position: relative;
    overflow: hidden;
    margin: 15px 0 10px 0;
    font-size: 1.6rem;
    font-weight: bold;
    color: #3c3c3c;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.bonus-label {
    display: block;
    font-size: 1.1rem;
    color: #232323;
    margin-bottom: 5px;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bonus-amount:hover {
    transform: translateY(-2px);
    border-color: rgba(64, 224, 208, 0.4);
    box-shadow: 0 4px 15px rgba(64, 224, 208, 0.15);
}

.bonus-amount i {
    margin-right: 10px;
    color: #3c3c3c;
    font-size: 1.4rem;
    animation: pulseIcon 2s infinite;
}

@keyframes pulseIcon {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.bonus-amount span {
    display: block;
    font-size: 1.1rem;
    color: #232323;
    margin-top: 5px;
    font-weight: normal;
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #68c8df;
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 20px;
    width: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.cta-button:active {
    transform: translateY(0);
}

.cta-button i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: scale(1.1);
}

footer {
    position: relative;
    width: 100%;
    background: #0B132B;
    color: #000;
    padding: 40px 20px;
    margin-top: 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.safer-gambling-section {
    margin-bottom: 30px;
}

.safer-gambling-section h3 {
    color: #E0E0E0;
    font-size: 24px;
    margin-bottom: 20px;
}

.safer-gambling-section p {
    color: #E0E0E0;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.age-restriction-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.regulator-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
    padding: 20px;
    background: rgba(87, 119, 138, 0.94);
    border-radius: 10px;
}

.regulator-logo {
    height: 40px;
    width: auto;
    filter: brightness(1);
    transition: all 0.3s ease;
}

.regulator-logo:hover {
    transform: translateY(-2px);
}

.legal-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 30px;
}

.legal-disclaimer p {
    color: #E0E0E0;
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.age-warning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    padding: 15px;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 8px;
    color: #222;
}

.age-warning i {
    color: #ff4444;
    font-size: 24px;
}

.age-warning p {
    color: #222;
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 768px) {
    footer {
        padding: 30px 15px;
    }

    .regulator-logos {
        gap: 15px;
        padding: 15px;
    }

    .regulator-logo {
        height: 30px;
    }

    .safer-gambling-section h3 {
        font-size: 20px;
    }

    .safer-gambling-section p,
    .age-warning p {
        font-size: 13px;
    }

    .legal-disclaimer p {
        font-size: 11px;
    }
}

/* Добавляем стили для рейтинга */
.rating-stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin: 10px 0;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

h2 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

p {
    color: #232323;
}

/* Удаляем стили фильтров */
.filters {
    display: none;
}

.filter-button {
    display: none;
}

.filter-button:hover {
    display: none;
}

.filter-button.active {
    display: none;
}

/* Добавляем новые анимации и эффекты */
@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(20px);
    }
    to { 
        opacity: 1; 
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Добавляем анимацию пульсации для номера */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0); }
}

.place-number {
    animation: float 3s ease-in-out infinite;
}

/* Добавляем медиа-запрос для мобильных устройств */
@media screen and (max-width: 768px) {
    .casino-grid {
        padding: 0 15px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    #casino-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .casino-card {
        padding: 20px;
    }
    
    .casino-logo {
        height: 120px;
    }
    
    .bonus-amount {
        font-size: 1.4rem;
        padding: 15px;
    }
    
    .bonus-amount span {
        font-size: 1rem;
    }
    
    .bonus-description {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .place-number {
        font-size: 1.2rem;
        width: 30px;
        height: 30px;
    }
}

/* Остальные стили продолжаются... */
/* Для экономии места, включу только основные стили. Полная версия содержит все 3958 строк из оригинального файла */

/* Navigation Styles */
.main-nav {
    margin-left: auto;
}

.main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.main-nav a {
    color: #E0E0E0;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: block;
    white-space: nowrap;
}

.main-nav a:hover {
    color: #F9C80E;
}

.main-nav a.active,
.main-nav .current-menu-item a {
    color: #F9C80E;
    font-weight: 600;
}

/* Age Verification Modal Styles */
.age-verification-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(255, 255, 255);
    z-index: 99999;
    overflow: auto;
    backdrop-filter: blur(5px);
}

.age-verification-content {
    position: relative;
    background: #fff;;
    margin: 10% auto;
    padding: 0;
    width: 90%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
    animation: modalFadeIn 0.5s ease;
    overflow: hidden;
}

.age-verification-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #68c8df;
}

.modal-logo {
    width: 150px;
    margin-bottom: 10px;
}

.age-verification-header h2 {
    color: #3c3c3c;
    margin: 0;
    font-size: 24px;
}

.age-verification-body {
    padding: 25px;
    color: #e6e6e6;
}

.age-icon-large {
    background-color: #dc3545;
    color: white;
    font-size: 28px;
    font-weight: bold;
    display: inline-block;
    padding: 5px 12px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.age-verification-body p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.age-verification-body ul {
    margin: 15px 0;
    padding-left: 20px;
}

.age-verification-body li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
    color: #3c3c3c;
    list-style: none;
}

.age-verification-body li:before {
    content: "•";
    color: #3c3c3c;
    position: absolute;
    left: 0;
}

.age-verification-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.confirm-age-btn, .exit-site-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 140px;
}

.confirm-age-btn {
    background-color: #4CAF50;
    color: white;
}

.confirm-age-btn:hover {
    background-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.exit-site-btn {
    background-color: #dc3545;
    color: white;
}

.exit-site-btn:hover {
    background-color: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.confirm-age-btn i, .exit-site-btn i {
    margin-left: 8px;
}

.age-warning-text {
    display: flex;
    align-items: center;
    background: rgba(228, 0, 23, 0.441);
    padding: 15px;
    border-radius: 5px;
    margin-top: 25px;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.age-warning-text i {
    color: #dc3545;
    font-size: 20px;
    margin-right: 10px;
}

.age-warning-text p {
    margin: 0;
    font-size: 14px;
    color: #ffffff;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .age-verification-content {
        margin: 15% auto;
        width: 95%;
    }
    
    .age-verification-buttons {
        flex-direction: column;
    }
    
    .confirm-age-btn, .exit-site-btn {
        width: 100%;
    }
}

/* Scroll Progress Indicator */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255,255,255,0.1);
    z-index: 1000;
}

.scroll-progress {
    height: 100%;
    width: 0;
    background: linear-gradient(to right, #3c3c3c, #00bfff);
    transition: width 0.2s ease;
}

.scroll-hint {
    position: fixed;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(64, 181, 224);
    padding: 10px 20px;
    border-radius: 20px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    animation: bounce 2s infinite;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Title Section */
.title-section {
    text-align: center;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.title-section h1 {
    color: #F9C80E;
    font-size: 2.8rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.title-section p {
    color: #E0E0E0;
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
}

.disclosure-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.age-icon {
    background: #ff4444;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
}

.advertiser-disclosure {
    color: #3c3c3c;
    font-size: 1rem;
    cursor: pointer;
    position: relative;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.tooltip {
    visibility: hidden;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #f4f4f4;
    color: #000;
    text-align: left;
    padding: 15px;
    border-radius: 8px;
    width: 400px;
    font-size: 0.675rem;
    line-height: 1.5;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 100;
    opacity: 0;
    transition: all 0.3s ease;
}

.advertiser-disclosure:hover .tooltip {
    visibility: visible;
    opacity: 1;
    bottom: calc(100% + 10px);
}

.tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: #f4f4f4 transparent transparent transparent;
}

/* Site Features */
.site-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 12px 20px;
    background: #fff;;
    border-radius: 12px;
    margin: 0 auto 20px;
    max-width: 1200px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.site-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(64, 182, 224, 0.1);
    border-radius: 8px;
    color: #222;
    transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
    .site-features {
        flex-direction: column;
        padding: 10px;
        gap: 10px;
        margin: 0 10px 15px;
    }

    .site-feature-item {
        width: 100%;
        justify-content: center;
        padding: 8px 15px;
    }

    .age-icon, .advertiser-disclosure {
        width: 100%;
        text-align: center;
    }

    .tooltip {
        width: 300px;
        font-size: 0.6rem;
        padding: 12px;
    }

    .title-section {
        padding: 30px 15px;
    }

    .title-section h1 {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }

    .title-section p {
        font-size: 1.2rem;
    }

    .disclosure-container {
        flex-direction: column;
        gap: 10px;
    }
}

/* Casino Card Styles - Новая структура */
.casino-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 5px;
}

.rating-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px;
    border-radius: 5px;
}

.rating-stars {
    color: #ffc107;
    letter-spacing: 2px;
    font-size: 16px;
}

.rating-value {
    color: #222;
    font-size: 14px;
    font-weight: bold;
    margin-top: 5px;
}

.casino-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.casino-name {
    color: #222;
    font-size: 18px;
    margin: 0 0 5px 0;
    text-align: center;
}

.bonus-container {
    background: rgba(64, 182, 224, 0.1);
    border-radius: 8px;
    padding: 12px 15px;
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.bonus-tag {
    color: #68c8df;
    font-size: 13px;
    font-weight: 500;
}

.bonus-text {
    color: #68c8df;
    font-size: 16px;
    font-weight: 700;
}

.features-list, .info-list {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.features-list li, .info-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #222;
}

.features-list li i, .info-list li i {
    color: #3c3c3c;
    width: 20px;
    text-align: center;
}

.license-info {
    font-size: 11px;
    color: #6c757d;
    margin-top: 8px;
}

.license-info a {
    color: #68c8df;
    font-weight: bold;
    text-decoration: underline;
}

.payments-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 8px;
    background: #ededed;
}

.payment-icon {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cta-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
}

.tc-text {
    font-size: 11px;
    color: #6c757d;
    text-align: center;
    margin-top: 5px;
}

.ribbon {
    position: absolute;
    top: 15px;
    left: -30px;
    transform: rotate(-45deg);
    background: #68c8df;
    color: #fff;
    padding: 5px 30px;
    font-weight: bold;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    font-size: 14px;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    opacity: 0.03;
}

.casino-symbol {
    position: absolute;
    font-size: 2rem;
    color: #3c3c3c;
    animation: float-symbol 15s linear infinite;
    opacity: 0.5;
}

@keyframes float-symbol {
    0% {
        transform: translateY(100vh) rotate(0deg);
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
    }
}

.symbol-1 { animation-duration: 20s; }
.symbol-2 { animation-duration: 15s; }
.symbol-3 { animation-duration: 18s; }
.symbol-4 { animation-duration: 25s; }

/* Description Section */
.description-section {
    background: #fff;;
    border-radius: 15px;
    padding: 40px;
    margin: 40px auto 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    max-width: 1200px;
    position: relative;
    z-index: 1;
}

.description-section h2 {
    color: #3c3c3c;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.description-section h3 {
    color: #3c3c3c;
    font-size: 1.5rem;
    margin: 30px 0 15px;
}

.description-content {
    color: #232323;
    line-height: 1.6;
}

.description-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(181, 181, 181, 0.5);
}

.feature:hover {
    transform: translateY(-2px);
}

.feature i {
    color: #68c8df;
    font-size: 1.8rem;
}

.feature span {
    color: #222;
    font-size: 1.1rem;
    line-height: 1.4;
}

.game-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.game-type {
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(181, 181, 181, 0.5);
}

.game-type:hover {
    transform: translateY(-2px);
}

.game-type i,
.game-type .game-icon {
    color: #3c3c3c;
    font-size: 2.5rem;
    margin-bottom: 15px;
    width: 60px;
    height: 60px;
    display: block;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}

.game-type:hover .game-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(64, 224, 208, 0.4));
}

.game-type h4 {
    color: #222;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.game-type p {
    color: #232323;
    font-size: 1rem;
    line-height: 1.5;
}

.casino-checklist {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.casino-checklist li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: #232323;
    font-size: 1.1rem;
    line-height: 1.5;
}

.casino-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3c3c3c;
    font-weight: bold;
}

/* Page-specific styles */
.about-page, .contact-page, .terms-page, .privacy-page, .cookie-page, .safer-gambling-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.about-hero, .contact-hero, .terms-hero, .privacy-hero, .cookie-hero, .safer-gambling-hero {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.about-hero h1, .contact-hero h1, .terms-hero h1, .privacy-hero h1, .cookie-hero h1, .safer-gambling-hero h1 {
    color: #F9C80E;
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.about-content, .contact-content, .terms-content, .privacy-content, .cookie-content, .safer-gambling-content {
    background: #fff;;
    border-radius: 15px;
    padding: 40px;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.about-section, .terms-section, .privacy-section, .cookie-section {
    margin-bottom: 40px;
}

.about-section h2, .terms-section h2, .privacy-section h2, .cookie-section h2 {
    color: #3c3c3c;
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-bottom: 1px solid #68c8df;
    padding-bottom: 0.8rem;
}

.about-section p, .terms-section p, .privacy-section p, .cookie-section p {
    color: #232323;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.about-intro, .terms-intro, .cookie-intro {
    font-weight: bold;
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(64, 182, 224, 0.1);
    border-radius: 10px;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    background: rgba(64, 224, 208, 0.05);
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(64, 182, 224, 0.1);
    transform: translateY(-5px);
}

.contact-item i {
    color: #3c3c3c;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-item h3 {
    color: #3c3c3c;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.contact-item p {
    color: #232323;
    line-height: 1.6;
    font-size: 1.1rem;
}

.contact-item a {
    color: #3c3c3c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Contact Form Styles */
.contact-form {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #68c8df;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #3c3c3c;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: rgba(64, 224, 208, 0.05);
    border-radius: 5px;
    color: #222;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(64, 224, 208, 0.2);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3c3c3c;
    box-shadow: 0 0 0 2px rgba(64, 224, 208, 0.2);
    transform: translateY(-1px);
}

.submit-button {
    background: #222;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
}

/* Success Popup */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.popup-overlay .success-message {
    display: block;
    background: #fff;;
    border: 1px solid #3c3c3c;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    animation: popupFadeIn 0.5s ease;
    max-width: 90%;
    width: 400px;
    text-align: center;
}

.popup-overlay .success-message i {
    color: #3c3c3c;
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: popupIconScale 0.5s ease;
}

.popup-overlay .success-message p {
    color: #222;
    font-size: 1.2rem;
    margin: 0;
    line-height: 1.5;
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes popupIconScale {
    from {
        transform: scale(0.5);
    }
    to {
        transform: scale(1);
    }
}

/* Safer Gambling Page Styles */
.safer-gambling-principles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
    position: relative;
    z-index: 1;
}

.principle-card {
    background: rgba(3, 10, 146, 0.107);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.principle-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.05);
    border-color: rgba(64, 224, 208, 0.2);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.principle-card i {
    color: #68c8df;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.principle-card h3 {
    color: #F9C80E;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.principle-card p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.5;
}

.hero-message {
    background: #fff;;
    border-radius: 15px;
    padding: 40px;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.message-box {
    position: relative;
    text-align: center;
}

.message-box h2 {
    color: #222;
    font-size: 2rem;
    margin-bottom: 20px;
}

.message-box .age-warning {
    background: #ff0000;
    color: #222;
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.tool-card {
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.tool-card i {
    color: #68c8df;
    font-size: 2rem;
    margin-bottom: 15px;
}

.tool-card h4 {
    color: #232323;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.tool-card p {
    color: #232323;
    font-size: 1rem;
    margin-bottom: 0;
}

.policy-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.policy-list li {
    color: #222;
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.02);
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.policy-list li i {
    color: #3c3c3c;
    margin-right: 15px;
    font-size: 1.3rem;
    min-width: 24px;
    text-align: center;
}

.help-organizations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
    align-items: center;
    background-color: #b9b9b9;
    border-radius: 5px;
    padding: 20px;
}

.help-organizations a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #232323;
    text-align: center;
    transition: all 0.3s ease;
}

.help-organizations img {
    max-width: 200px;
    height: auto;
    filter: grayscale(100%) brightness(1.2);
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.self-assessment {
    margin-top: 30px;
    padding: 20px;
    background-color: #e9f7fe;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

.self-assessment h4 {
    color: #0d1b2a;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.self-assessment p, 
.self-assessment li {
    color: #333;
    margin-bottom: 10px;
}

.self-assessment ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .about-page, .contact-page, .terms-page, .privacy-page, .cookie-page, .safer-gambling-page {
        padding: 15px;
    }

    .about-hero h1, .contact-hero h1, .terms-hero h1, .privacy-hero h1, .cookie-hero h1, .safer-gambling-hero h1 {
        font-size: 2.5rem;
    }

    .about-content, .contact-content, .terms-content, .privacy-content, .cookie-content, .safer-gambling-content {
        padding: 30px;
    }

    .safer-gambling-principles {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-form {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }

    .tools-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .help-organizations {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 20px;
    }

    .help-organizations img {
        max-width: 150px;
    }
}

@media screen and (max-width: 480px) {
    .about-hero h1, .contact-hero h1, .terms-hero h1, .privacy-hero h1, .cookie-hero h1, .safer-gambling-hero h1 {
        font-size: 2rem;
    }

    .about-content, .contact-content, .terms-content, .privacy-content, .cookie-content, .safer-gambling-content {
        padding: 20px;
    }

    .contact-methods, .tools-grid, .help-organizations {
        grid-template-columns: 1fr;
    }

    .safer-gambling-principles {
        margin: 30px 0;
    }

    .principle-card {
        padding: 20px 15px;
    }

    .self-assessment {
        padding: 15px !important;
        margin-top: 20px;
    }
    
    .self-assessment h4 {
        font-size: 1.1rem;
    }
    
    .self-assessment ul {
        padding-left: 15px;
    }
}

/* WordPress specific styles */
.entry-content {
    margin-bottom: 20px;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    color: #3c3c3c;
    margin-bottom: 15px;
}

.entry-content p {
    color: #232323;
    line-height: 1.6;
    margin-bottom: 15px;
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 15px;
    padding-left: 25px;
}

.entry-content li {
    color: #232323;
    margin-bottom: 8px;
}

.entry-content a {
    color: #68c8df;
    text-decoration: none;
}

.entry-content a:hover {
    text-decoration: underline;
}

/* Custom WordPress classes */
.wp-block-group {
    margin-bottom: 20px;
}

.aligncenter {
    text-align: center;
}

.alignleft {
    float: left;
    margin-right: 20px;
}

.alignright {
    float: right;
    margin-left: 20px;
}

/* Ensure WordPress admin bar doesn't overlap */
body.admin-bar .scroll-indicator {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .scroll-indicator {
        top: 46px;
    }
}

/* WordPress specific styles */
.main-content, .page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.page-hero {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.page-hero h1 {
    color: #F9C80E;
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.page-content-wrapper {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.entry-content {
    margin-bottom: 20px;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    color: #3c3c3c;
    margin-bottom: 15px;
}

.entry-content p {
    color: #232323;
    line-height: 1.6;
    margin-bottom: 15px;
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 15px;
    padding-left: 25px;
}

.entry-content li {
    color: #232323;
    margin-bottom: 8px;
}

.entry-content a {
    color: #68c8df;
    text-decoration: none;
}

.entry-content a:hover {
    text-decoration: underline;
}

/* Custom WordPress classes */
.wp-block-group {
    margin-bottom: 20px;
}

.aligncenter {
    text-align: center;
}

.alignleft {
    float: left;
    margin-right: 20px;
}

.alignright {
    float: right;
    margin-left: 20px;
}

/* Ensure WordPress admin bar doesn't overlap */
body.admin-bar .scroll-indicator {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .scroll-indicator {
        top: 46px;
    }
}

/* Fix for CSS syntax errors */
body {
    background: #0C0F1F;
}

.casino-card {
    background: #ffffff;
}

.bonus-amount {
    background: linear-gradient(145deg, rgba(101, 64, 224, 0.1), rgba(0, 191, 255, 0.15));
}

.site-features {
    background: #fff;
}

footer {
    background: #0B132B;
}

/* Page Templates Specific Styles */
.about-page, .contact-page, .terms-page, .privacy-page, .cookie-page, .safer-gambling-page, .casino-page {
    min-height: 60vh;
}

.about-content, .contact-content, .terms-content, .privacy-content, .cookie-content, .safer-gambling-content {
    background: #fff;
}

.hero-message {
    background: #fff;
}

.age-verification-content {
    background: #fff;
}

.popup-overlay .success-message {
    background: #fff;
}

.alternative-channels {
    background: #fff;
}