:root {
    --purple-primary: #6B2C91;
    --purple-dark: #4A1F64;
    --purple-light: #8E44AD;
    --gold-primary: #FFD700;
    --gold-dark: #DAA520;
    --gold-light: #FFF4CC;
    --white: #FFFFFF;
    --black: #1A1A1A;
    --gray-light: #F5F5F5;
    --gray-medium: #CCCCCC;
    --gradient-purple: linear-gradient(135deg, #6B2C91 0%, #8E44AD 100%);
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --shadow-soft: 0 4px 15px rgba(0,0,0,0.1);
    --shadow-strong: 0 8px 30px rgba(0,0,0,0.2);
}

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

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

#realtime-clock {
    position: fixed;
    top: 10px;
    right: 20px;
    background: var(--gradient-purple);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    z-index: 9999;
    box-shadow: var(--shadow-soft);
    letter-spacing: 1px;
}

.main-header {
    background: var(--gradient-purple);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-strong);
}

.navigation-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
}

.logo-wrapper img {
    height: 60px;
    width: auto;
    border-radius: 8px;
}

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

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 8px;
}

.nav-menu a:hover,
.nav-menu a.nav-active {
    background-color: var(--gold-primary);
    color: var(--purple-dark);
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    background: var(--gold-primary);
    border: none;
    padding: 12px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 22px;
    color: var(--purple-dark);
}

.hero-banner {
    background: var(--gradient-purple);
    padding: 100px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: var(--gold-primary);
    opacity: 0.1;
    border-radius: 50%;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero-content h1 {
    font-size: 58px;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 28px;
    color: var(--gold-primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.hero-description {
    font-size: 19px;
    color: var(--white);
    margin-bottom: 35px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary,
.btn-secondary {
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--purple-dark);
    box-shadow: var(--shadow-soft);
}

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

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 3px solid var(--gold-primary);
}

.btn-secondary:hover {
    background: var(--gold-primary);
    color: var(--purple-dark);
}

.hero-visual {
    flex: 1;
    z-index: 2;
}

.hero-visual img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-strong);
}

.container-wide,
.container-standard {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 30px;
}

.games-showcase {
    background: var(--gray-light);
}

.games-showcase h2 {
    text-align: center;
    font-size: 48px;
    color: var(--purple-dark);
    margin-bottom: 15px;
}

.section-intro {
    text-align: center;
    font-size: 20px;
    color: var(--black);
    margin-bottom: 60px;
}

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

.game-category {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
    position: relative;
}

.game-category:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.category-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-gold);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--purple-dark);
    z-index: 1;
}

.game-category img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.game-category h3 {
    font-size: 28px;
    color: var(--purple-dark);
    margin: 25px 25px 15px;
}

.game-category p {
    padding: 0 25px;
    font-size: 16px;
    color: var(--black);
    line-height: 1.7;
    margin-bottom: 25px;
}

.game-link {
    display: inline-block;
    margin: 0 25px 25px;
    color: var(--purple-primary);
    font-weight: 700;
    text-decoration: none;
    font-size: 17px;
}

.game-link:hover {
    color: var(--gold-dark);
}

.sweepstakes-explainer {
    background: var(--white);
}

.sweepstakes-explainer h2 {
    text-align: center;
    font-size: 48px;
    color: var(--purple-dark);
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--black);
    margin-bottom: 60px;
}

.explainer-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.step-card {
    background: var(--gray-light);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--gradient-purple);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 24px;
    color: var(--purple-dark);
    margin-bottom: 15px;
}

.step-card p {
    font-size: 16px;
    line-height: 1.6;
}

.legal-notice {
    background: var(--gold-light);
    padding: 25px 30px;
    border-radius: 12px;
    border-left: 5px solid var(--gold-dark);
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.legal-notice i {
    font-size: 28px;
    color: var(--purple-dark);
    margin-top: 5px;
}

.legal-notice p {
    font-size: 15px;
    line-height: 1.6;
}

.free-to-play-section {
    background: var(--gray-light);
}

.ftp-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.ftp-text {
    flex: 1;
}

.ftp-text h2 {
    font-size: 48px;
    color: var(--purple-dark);
    margin-bottom: 10px;
}

.ftp-text h3 {
    font-size: 28px;
    color: var(--gold-dark);
    margin-bottom: 25px;
}

.ftp-text p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.benefits-list {
    list-style: none;
    margin: 25px 0;
}

.benefits-list li {
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.benefits-list i {
    color: var(--gold-dark);
    font-size: 22px;
}

.highlight-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--purple-primary);
    margin-top: 25px;
}

.ftp-image {
    flex: 1;
}

.ftp-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-strong);
}

.promotions-hub {
    background: var(--white);
}

.promotions-hub h2 {
    text-align: center;
    font-size: 48px;
    color: var(--purple-dark);
    margin-bottom: 15px;
}

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

.promo-card {
    background: var(--gray-light);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

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

.promo-card.featured {
    background: var(--gradient-purple);
    color: var(--white);
    border-color: var(--gold-primary);
}

.promo-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--gradient-gold);
    color: var(--purple-dark);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

.promo-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
}

.promo-card.featured h3 {
    color: var(--gold-primary);
}

.promo-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--gold-dark);
    margin: 20px 0;
}

.promo-card.featured .promo-value {
    color: var(--gold-primary);
}

.promo-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.promo-btn {
    display: inline-block;
    padding: 15px 35px;
    background: var(--gradient-gold);
    color: var(--purple-dark);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.promo-btn:hover {
    transform: scale(1.05);
}

.testimonials-section {
    background: var(--gray-light);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 48px;
    color: var(--purple-dark);
    margin-bottom: 15px;
}

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

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.quote-icon {
    font-size: 40px;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 18px;
    color: var(--purple-dark);
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 14px;
    color: var(--gray-medium);
}

.about-chumba {
    background: var(--white);
}

.about-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 48px;
    color: var(--purple-dark);
    margin-bottom: 25px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.key-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    font-weight: 600;
}

.feature-item i {
    color: var(--gold-dark);
    font-size: 24px;
}

.faq-section {
    background: var(--gray-light);
}

.faq-section h2 {
    text-align: center;
    font-size: 48px;
    color: var(--purple-dark);
    margin-bottom: 15px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--purple-dark);
    color: var(--white);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--purple-light);
}

.faq-question h3 {
    font-size: 20px;
    font-weight: 600;
}

.faq-question i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 25px 30px;
    font-size: 16px;
    line-height: 1.7;
}

.cta-final {
    background: var(--gradient-purple);
    text-align: center;
    padding: 80px 30px;
}

.cta-final h2 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-final > p {
    font-size: 22px;
    color: var(--gold-light);
    margin-bottom: 35px;
}

.btn-primary-large {
    display: inline-block;
    padding: 22px 55px;
    background: var(--gradient-gold);
    color: var(--purple-dark);
    text-decoration: none;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-strong);
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.3);
}

.cta-disclaimer {
    margin-top: 25px;
    font-size: 14px;
    color: var(--gold-light);
}

.main-footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 30px 30px;
}

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

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

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 10px;
}

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

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

.footer-column ul li a {
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--gold-primary);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--gold-primary);
    margin-top: 3px;
}

.responsible-gaming {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 30px;
}

.responsible-gaming h4 {
    color: var(--gold-primary);
    font-size: 20px;
    margin-bottom: 15px;
}

.responsible-gaming p {
    font-size: 15px;
    margin-bottom: 15px;
}

.help-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.help-links a {
    color: var(--white);
    text-decoration: none;
    padding: 10px 20px;
    background: var(--purple-dark);
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.help-links a:hover {
    background: var(--gold-primary);
    color: var(--black);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--gray-medium);
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    padding: 30px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-text h3 {
    color: var(--purple-dark);
    font-size: 22px;
    margin-bottom: 10px;
}

.cookie-text p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.cookie-policy-link {
    color: var(--purple-primary);
    font-weight: 600;
    text-decoration: none;
}

.cookie-policy-link:hover {
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
}

.cookie-btn.accept {
    background: var(--purple-primary);
    color: var(--white);
}

.cookie-btn.accept:hover {
    background: var(--purple-dark);
}

.cookie-btn.customize {
    background: var(--gold-primary);
    color: var(--purple-dark);
}

.cookie-btn.customize:hover {
    background: var(--gold-dark);
}

.cookie-btn.decline {
    background: var(--gray-medium);
    color: var(--black);
}

.cookie-btn.decline:hover {
    background: #999;
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        flex-direction: column;
        background: var(--purple-dark);
        width: 100%;
        padding: 30px;
        transition: left 0.3s ease;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .nav-menu a {
        display: block;
        width: 100%;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero-banner {
        flex-direction: column;
        padding: 60px 30px;
    }
    
    .hero-content h1 {
        font-size: 38px;
    }
    
    .hero-subtitle {
        font-size: 22px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .games-grid,
    .explainer-steps,
    .promo-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .ftp-content,
    .about-layout {
        flex-direction: column;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

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

.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.blog-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--gray-medium);
}

.blog-card h3 {
    font-size: 24px;
    color: var(--purple-dark);
    margin-bottom: 15px;
}

.blog-excerpt {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: var(--purple-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
}

.read-more:hover {
    color: var(--gold-dark);
}

.contact-section {
    background: var(--white);
}

.contact-wrapper {
    display: flex;
    gap: 60px;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 42px;
    color: var(--purple-dark);
    margin-bottom: 25px;
}

.contact-details {
    margin: 30px 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

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

.contact-item-text h3 {
    font-size: 18px;
    color: var(--purple-dark);
    margin-bottom: 5px;
}

.contact-item-text p {
    font-size: 16px;
    color: var(--black);
}

.contact-form-block {
    flex: 1;
}

.contact-form {
    background: var(--gray-light);
    padding: 40px;
    border-radius: 15px;
}

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

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--purple-dark);
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--gray-medium);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    background: var(--gradient-purple);
    color: var(--white);
    border: none;
    padding: 16px 40px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

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

.team-section {
    background: var(--gray-light);
}

.team-section h2 {
    text-align: center;
    font-size: 48px;
    color: var(--purple-dark);
    margin-bottom: 60px;
}

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

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

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

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

.team-info {
    padding: 30px;
}

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

.team-role {
    font-size: 16px;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-bio {
    font-size: 15px;
    line-height: 1.6;
    color: var(--black);
}

.post-header {
    background: var(--gradient-purple);
    padding: 80px 30px 60px;
    text-align: center;
}

.post-header h1 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.post-meta-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 16px;
    color: var(--gold-light);
}

.post-content-wrapper {
    max-width: 900px;
    margin: -40px auto 0;
    background: var(--white);
    padding: 60px;
    border-radius: 20px;
    box-shadow: var(--shadow-strong);
}

.featured-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 40px;
}

.post-content {
    font-size: 18px;
    line-height: 1.8;
    color: var(--black);
}

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

.post-content h3 {
    font-size: 28px;
    color: var(--purple-dark);
    margin: 35px 0 15px;
}

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

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

.post-content li {
    margin-bottom: 12px;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 10001;
    align-items: center;
    justify-content: center;
}

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

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

.modal-content i {
    font-size: 60px;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.modal-content h3 {
    font-size: 32px;
    color: var(--purple-dark);
    margin-bottom: 15px;
}

.modal-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.modal-close {
    background: var(--gradient-purple);
    color: var(--white);
    border: none;
    padding: 14px 35px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

.modal-close:hover {
    opacity: 0.9;
}
