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

:root {
    --primary-color: #851E2E;
    --primary-dark: #511C29;
    --secondary-color: #FFCFC2;
    --text-color: #333;
    --light-text: #f5f5f5;
    --dark-bg: #372F32;
    --card-bg: #851E2E;
    --light-bg: #f8f9fa;
    --success-color: #4caf50;
    --danger-color: #f44336;
    --hot-color: #d81b60;
    --new-color: #00acc1;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
}

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

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

ul {
    list-style: none;
}

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

/* Buttons */
.btn, .btn-offer {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--light-text);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn:hover, .btn-offer:hover {
    background-color: var(--secondary-color);
    color: var(--text-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-offer {
    width: 100%;
    margin-top: 0;
    padding: 14px 28px;
    white-space: nowrap;
    background: var(--secondary-color);
    color: var(--text-color);
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
}

.btn-offer:hover {
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.btn-offer:hover:before {
    transform: scaleX(1);
}

/* Header */
header {
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo h1 {
    font-size: 28px;
    letter-spacing: 1px;
}

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

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    padding: 8px 0;
    position: relative;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--secondary-color);
}

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

/* Hero section */
.hero {
    background: var(--dark-bg);
    background-size: cover;
    background-position: center;
    color: var(--light-text);
    padding: 120px 0;
    text-align: center;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--secondary-color);
}

/* Offers */
.offers {
    background-color: var(--secondary-color);
}

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

.offers-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1600px;
    margin: 0 auto;
}

.offer-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.offer-card img {
    max-width: 180px;
    border-radius: 5px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    background-color: var(--dark-bg);
    padding: 15px;
    object-fit: contain;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    filter: brightness(1.2);
}

/* Special styles for SVG images */
.offer-card img[src$=".svg"] {
    filter: brightness(1.5);
    background-color: var(--card-bg);
}

/* Special styles for webp images */
.offer-card img[src$=".webp"] {
    background-color: #111;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.casino-info {
    flex: 0.25;
    min-width: 200px;
}

.bonus-container {
    flex: 0.5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
    border-left: 1px dashed #e0e0e0;
    border-right: 1px dashed #e0e0e0;
}

.btn-offer-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0.25;
    min-width: 200px;
    flex-direction: column;
}

.offer-card h3 {
    padding: 0 0 10px;
    font-size: 24px;
    text-align: left;
}

.payment-methods {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    justify-content: center;
}

.payment-icon {
    font-size: 24px;
    background-color: var(--light-bg);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.offer-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--secondary-color);
    color: var(--dark-bg);
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 12px;
    z-index: 1;
}

.offer-badge.hot {
    background-color: var(--hot-color);
    color: white;
}

.offer-badge.new {
    background-color: var(--new-color);
    color: white;
}

/* Additional style for logo container */
.logo-container {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    padding: 5px;
    margin-right: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.logo-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.rating {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
}

.star {
    color: yellow;
    font-size: 16px;
    margin: 0 1px;
}

.star.half {
    position: relative;
    display: inline-block;
}

.star.half:after {
    content: '☆';
    position: absolute;
    top: 0;
    left: 0;
    color: var(--secondary-color);
}

.rating-value {
    margin-left: 10px;
    font-weight: 600;
}

.bonus {
    padding: 0;
    text-align: center;
    margin-bottom: 0;
}

.bonus p {
    margin-bottom: 8px;
    font-size: 16px;
}

.bonus strong {
    color: var(--secondary-color);
    font-size: 22px;
}

/* Features */
.features {
    background-color: var(--dark-bg);
    color: var(--light-text);
}

.section-description {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.feature {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--card-bg);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.feature h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.feature p {
    opacity: 0.8;
}

.additional-info {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    margin-top: 30px;
}

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

.additional-info p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.game-types {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.game-type {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 20px;
    border-left: 3px solid var(--secondary-color);
}

.game-type h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.game-type p {
    opacity: 0.8;
    font-size: 14px;
    line-height: 1.5;
}

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--light-text);
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.newsletter p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter form {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.newsletter input {
    flex: 1;
    min-width: 300px;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
}

.newsletter .btn {
    padding: 15px 30px;
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 70px 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-logo h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

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

.footer-logo p {
    opacity: 0.7;
}

.footer-links h3, 
.footer-contact h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3:after,
.footer-contact h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

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

.footer-links ul li a {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-contact p {
    margin-bottom: 20px;
    opacity: 0.7;
}

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

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--card-bg);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--secondary-color);
    color: var(--dark-bg);
}

.safer-gambling {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 40px;
}

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

.safer-gambling p {
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
    opacity: 0.8;
}

.gambling-help {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 20px;
    margin: 25px 0;
    border-left: 3px solid var(--secondary-color);
}

.gambling-help h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.gambling-help p {
    margin-bottom: 10px;
    font-size: 13px;
}

.gambling-help a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.gambling-organizations {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
    align-items: center;
}

.org-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    background-color: transparent;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: none;
}

.org-logo:hover {
    transform: none;
    opacity: 0.8;
}

.org-logo img {
    max-height: 40px;
    max-width: 100%;
    object-fit: contain;
    filter: brightness(1.8);
}

.org-badge {
    background-color: var(--primary-dark);
    color: white;
    padding: 6px 10px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    opacity: 0.7;
    font-size: 12px;
}

.disclaimer {
    text-align: center;
    margin-bottom: 20px;
}

.disclaimer p {
    margin-bottom: 5px;
}

.legal-info p {
    line-height: 1.5;
    margin-bottom: 10px;
}

/* Media queries */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
    }
    
    nav ul {
        margin-top: 20px;
    }
    
    nav ul li {
        margin: 0 10px;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero h2 {
        font-size: 36px;
    }
    
    .newsletter form {
        flex-direction: column;
    }
    
    .newsletter input {
        min-width: 100%;
    }
    
    .section-title {
        font-size: 28px;
    }

    .section-description {
        font-size: 16px;
        padding: 0 15px;
    }

    .offer-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 15px;
    }

    .offer-card img {
        max-width: 100%;
        margin-bottom: 5px;
    }

    .casino-info {
        width: 100%;
        margin-bottom: 0;
        text-align: center;
    }

    .offer-card h3 {
        text-align: center;
    }

    .rating {
        justify-content: center;
    }

    .bonus-container {
        width: 100%;
        border-left: none;
        border-right: none;
        border-top: 1px dashed #e0e0e0;
        border-bottom: 1px dashed #e0e0e0;
        padding: 15px 0;
    }

    .btn-offer-container {
        width: 100%;
        padding: 10px 0 0;
    }

    .btn-offer {
        width: 100%;
        padding: 12px 15px;
    }

    .additional-info {
        padding: 20px 15px;
    }

    .game-types {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-nav {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-links h3:after,
    .footer-contact h3:after {
        left: 0;
        transform: none;
    }
    
    .social-links {
        justify-content: flex-start;
    }
    
    .gambling-organizations {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    nav ul li {
        margin: 0 5px;
        font-size: 14px;
    }
    
    .hero h2 {
        font-size: 30px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .offer-card {
        margin: 0 auto;
        max-width: 300px;
    }
    
    .gambling-help {
        padding: 15px;
    }
    
    .org-logo {
        height: 40px;
        padding: 6px 10px;
    }
    
    .org-logo img {
        max-height: 30px;
    }
    
    .org-badge {
        font-size: 12px;
        padding: 4px 8px;
    }
}

.offer-card {
    background-color: var(--card-bg);
    color: var(--light-text);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.offer-card img {
    max-width: 180px;
    border-radius: 5px;
    padding: 10px;
    object-fit: contain;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.casino-info {
    flex: 0.25;
    min-width: 200px;
}

.bonus-container {
    flex: 0.5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
    border-left: 1px dashed #e0e0e0;
    border-right: 1px dashed #e0e0e0;
}

.btn-offer-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0.25;
    min-width: 200px;
    flex-direction: column;
}

.btn-offer:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--light-text);
    transform: scaleX(0);
    transform-origin: 0 50%;
    transition: transform 0.3s ease-out;
}

.btn-offer:hover:before {
    transform: scaleX(1);
}

.responsible-gaming {
    color: #ffffff;
    font-size: 11px;
    text-align: center;
    margin-top: 10px;
    font-style: italic;
    line-height: 1.3;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 6px 10px;
    border-radius: 4px;
    max-width: 200px;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.license-info {
    font-size: 10px;
    text-align: left;
    margin-top: 2px;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 500;
}

.license-info a {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Gambling risk warning */
.gambling-risk-warning {
    background-color: #f44336;
    color: white;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border-left: 5px solid #b71c1c;
    font-size: 15px;
    text-align: center;
}

.gambling-risk-warning h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    letter-spacing: 0.5px;
    justify-content: center;
}

.gambling-risk-warning h3:before {
    content: "⚠️";
    margin-right: 10px;
    font-size: 24px;
}

.gambling-risk-warning p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
}

.gambling-risk-warning strong {
    font-weight: 700;
}

.gambling-risk-warning a:hover {
    text-decoration: underline;
    color: #ffeb3b !important;
}

/* Age Verification Popup */
.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.age-verification-popup {
    background-color: var(--dark-bg);
    border-radius: 10px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-text);
}

.age-verification-popup h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.age-verification-popup p {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
}

.age-verification-popup .logo {
    margin-bottom: 20px;
}

.age-verification-popup .logo h1 {
    font-size: 24px;
}

.age-verification-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.age-verification-buttons .btn {
    padding: 12px 30px;
    min-width: 120px;
}

.age-verification-buttons .btn.btn-confirm {
    background-color: var(--primary-color);
    color: white;
}

.age-verification-buttons .btn.btn-decline {
    background-color: var(--danger-color);
    color: white;
}

.age-verification-notice {
    margin-top: 20px;
    font-size: 12px;
    opacity: 0.7;
}

.age-verification-notice a {
    color: var(--secondary-color);
    text-decoration: underline;
}

@media (max-width: 576px) {
    .age-verification-popup {
        padding: 30px 20px;
    }
    
    .age-verification-popup h2 {
        font-size: 24px;
    }
    
    .age-verification-buttons {
        flex-direction: column;
    }
    
    .age-verification-buttons .btn {
        width: 100%;
    }
}

.hidden {
    display: none !important;
} 