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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff
}

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

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-12 { width: 100%; padding: 0 15px; }
.col-lg-3 { width: 25%; padding: 0 15px; }
.col-lg-4 { width: 33.333%; padding: 0 15px; }
.col-lg-6 { width: 50%; padding: 0 15px; }
.col-md-6 { width: 50%; padding: 0 15px; }

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

.topbar-area {
    background: linear-gradient(135deg, #ff499e, #d264b6);
    color: white;
    padding: 8px 0;
    font-size: 14px
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar-right {
    justify-content: flex-end;
}

.main-header {
    background: #ffffff;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-section .main-logo h2 {
    color: #ff499e;
    font-weight: 700;
    font-size: 24px;
    text-decoration: none;
}

.logo-section .main-logo {
    text-decoration: none
}

.main-navigation {
    position: relative;
}

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    margin-left: auto;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.main-navigation .nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    justify-content: center;
}

.main-navigation .nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.main-navigation .nav-menu a:hover {
    color: #ff499e;
}

.header-actions {
    text-align: right;
}

.signup-btn {
    background: linear-gradient(135deg, #ff499e, #d264b6);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: transform 0.3s ease;
    margin-left: auto;
    font-size: 14px;
}

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

.hero-wrapper {
    background: linear-gradient(135deg, #49b6ff, #779be7, #a480cf);
    color: white;
    padding: 80px 0;
    min-height: 70vh;
    display: flex;
    align-items: center
}

.hero-text-block h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-text-block h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
    opacity: 0.9
}

.hero-text-block p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.8;
    line-height: 1.6;
}

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

.primary-cta {
    background: #ff499e;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease
}

.primary-cta:hover {
    background: #e6318a;
    transform: translateY(-2px);
}

.secondary-cta {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.secondary-cta:hover {
    background: white;
    color: #49b6ff;
}

.countdown-block {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px)
}

.countdown-block h4 {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 600;
}

.timer-display {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    gap: 15px;
}

.time-unit {
    background: rgba(255,255,255,0.2);
    padding: 20px;
    border-radius: 15px;
    flex: 1;
    backdrop-filter: blur(5px);
}

.time-unit .number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.time-unit .label {
    font-size: 14px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px
}

.jackpot-amount {
    font-size: 36px;
    font-weight: 700;
}

.jackpot-amount .currency {
    font-size: 24px;
    opacity: 0.8;
}

.features-area {
    padding: 80px 0;
    background: #f8f9fa;
}

.feature-card {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.feature-card .material-icons {
    font-size: 48px;
    color: #ff499e;
    margin-bottom: 20px;
}

.feature-card h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

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

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

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.popup-content {
    background: white;
    border-radius: 20px;
    padding: 0;
    max-width: 450px;
    width: 90%;
    position: relative;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.popup-header {
    background: linear-gradient(135deg, #ff499e, #d264b6);
    color: white;
    padding: 25px;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popup-header h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 5px
}

.popup-body {
    padding: 30px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.input-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: #ff499e;
}

.register-btn {
    width: 100%;
    background: linear-gradient(135deg, #ff499e, #d264b6);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.success-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #4caf50;
    color: white;
    padding: 20px 30px;
    border-radius: 10px;
    display: none;
    align-items: center;
    gap: 10px;
    z-index: 3000;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.main-footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

.footer-top {
    margin-bottom: 40px;
}

.footer-widget h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ff499e;
}

.footer-widget p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 15px;
}

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

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

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease
}

.footer-links a:hover {
    color: #ff499e;
}

.govt-links {
    margin-top: 20px;
}

.govt-logo {
    max-width: 120px;
    height: auto;
}

.age-warning {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.age-icon {
    background: #ff499e;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
}

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

.copyright-text p {
    color: #999;
    font-size: 14px;
    margin: 0;
}

@media (max-width: 992px) {
    .col-lg-3, .col-lg-4, .col-lg-6 {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .hero-text-block h1 {
        font-size: 36px;
    }
    
    .timer-display {
        flex-direction: column;
        gap: 10px;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .main-navigation .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
    }
    
    .main-navigation .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .main-navigation .nav-menu li {
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }
    
    .main-navigation .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .col-md-6 {
        width: 100%;
    }
    
    .topbar-left, .topbar-right {
        justify-content: center;
        margin-bottom: 5px
    }
    
    .hero-text-block h1 {
        font-size: 28px;
    }
    
    .countdown-block {
        margin-top: 30px;
    }
    
    .main-header {
        padding: 8px 0;
    }
    
    .logo-section .main-logo h2 {
        font-size: 20px;
    }
    
    .signup-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .main-navigation .nav-menu {
        padding: 15px;
    }
}

.about_area {
    padding: 80px 0;
    background: #ffffff;
}

.about_img img {
    width: 100%;
    border-radius: 15px
}

.about_content {
    padding-left: 50px;
}

.about_content h3 {
    font-size: 38px;
    line-height: 1.3;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.about_content p {
    font-size: 17px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 25px;
    margin-top: 20px
}

.about_content ul {
    margin-bottom: 40px;
    list-style: none;
}

.about_content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    position: relative;
    padding-left: 30px;
    margin-bottom: 8px;
    font-weight: 400;
}

.about_content ul li::before {
    position: absolute;
    left: 0;
    content: '✓';
    color: #ff499e;
    font-weight: 700;
    font-size: 18px;
    top: 0;
}

.learn-more-btn {
    background: linear-gradient(135deg, #ff499e, #d264b6);
    color: #fff;
    display: inline-block;
    padding: 15px 30px;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 500;
    border: 0;
    border-radius: 25px;
    text-align: center;
    text-decoration: none;
    text-transform: capitalize;
    transition: 0.3s;
    cursor: pointer;
    letter-spacing: 1px;
}

.learn-more-btn:hover {
    transform: translateY(-2px);
    color: #fff;
}

@media (max-width: 992px) {
    .about_content {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .about_content h3 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .about_area {
        padding: 50px 0;
    }
    
    .about_content h3 {
        font-size: 28px
    }
}

.testimonials_section {
    padding: 90px 0;
    background: url('lotovim/testt.webp') center center;
    background-size: cover;
    position: relative;
}

.testimonials_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.92);
    z-index: 1;
}

.testimonials_section .container-fluid {
    position: relative;
    z-index: 2;
}

.section_header {
    text-align: center;
    margin-bottom: 60px;
}

.section_header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.section_header p {
    font-size: 18px;
    color: #666;
    max-width: 500px;
    margin: 0 auto
}

.testimonial_card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    border-left: 4px solid #ff499e;
}

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

.testimonial_card .stars {
    color: #ffc107;
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 2px
}

.testimonial_card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial_card h5 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.testimonial_card span {
    font-size: 14px;
    color: #888;
    font-weight: 400;
}

@media (max-width: 992px) {
    .testimonials_section {
        padding: 60px 0;
    }
    
    .section_header h2 {
        font-size: 36px;
    }
    
    .testimonial_card {
        padding: 25px 20px;
    }
}

@media (max-width: 768px) {
    .section_header h2 {
        font-size: 28px;
    }
    
    .testimonial_card {
        margin-bottom: 20px;
    }
}

.story_wrapper {
    padding: 85px 0;
    background: linear-gradient(45deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.story_wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23ff499e" opacity="0.1"/><circle cx="80" cy="40" r="3" fill="%23d264b6" opacity="0.1"/><circle cx="40" cy="80" r="2" fill="%23a480cf" opacity="0.1"/></svg>');
    background-size: 200px 200px;
}

.story_content {
    position: relative;
    z-index: 2;
    background: #ffffff;
    padding: 50px 45px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

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

.story_header h2 {
    font-size: 40px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.header_line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff499e, #d264b6);
    margin: 0 auto;
    border-radius: 2px
}

.intro_text {
    font-size: 20px;
    font-style: italic;
    color: #ff499e;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 500;
}

.story_block {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
    position: relative;
}

.story_block::after {
    content: '';
    position: absolute;
    left: 35px;
    top: 70px;
    width: 2px;
    height: 40px;
    background: #e0e0e0;
}

.story_block:last-of-type::after {
    display: none;
}

.year_badge {
    background: linear-gradient(135deg, #ff499e, #d264b6);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    margin-right: 25px;
    min-width: 70px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 5px
}

.story_block p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin: 0;
    flex: 1;
}

.closing_text {
    text-align: center;
    margin-top: 45px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(255,73,158,0.1), rgba(210,100,182,0.1));
    border-radius: 15px;
    border-left: 4px solid #ff499e;
}

.closing_text p {
    font-size: 18px;
    color: #333;
    margin: 0;
}

@media (max-width: 992px) {
    .story_wrapper {
        padding: 60px 0;
    }
    
    .story_content {
        padding: 35px 25px;
    }
    
    .story_header h2 {
        font-size: 32px;
    }
    
    .story_block {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .year_badge {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .story_block::after {
        left: 15px;
        top: 50px;
    }
}

@media (max-width: 768px) {
    .story_content {
        padding: 25px 20px;
    }
    
    .story_header h2 {
        font-size: 28px;
    }
    
    .intro_text {
        font-size: 18px;
    }
}

.tickets_cta_section {
    padding: 70px 0;
    background: linear-gradient(135deg, #49b6ff 0%, #779be7 50%, #a480cf 100%);
    position: relative;
    overflow: hidden;
}

.tickets_cta_section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    z-index: 1
}

.tickets_cta_section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    z-index: 1;
}

.cta_wrapper {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 45px 40px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.cta_content h2 {
    font-size: 38px;
    font-weight: 700;
    color: #333;
    margin-bottom: 18px;
}

.cta_content p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

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

.benefit_item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #555;
    font-weight: 500;
}

.benefit_item .material-icons {
    color: #ff499e;
    font-size: 20px;
}

.cta_actions {
    text-align: center;
}

.big_cta_btn {
    background: linear-gradient(135deg, #ff499e, #d264b6);
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255,73,158,0.3);
}

.big_cta_btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255,73,158,0.4);
}

.contact_link p {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.contact_btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #ff499e;
    border: 2px solid #ff499e;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.contact_btn:hover {
    background: #ff499e;
    color: white;
    text-decoration: none;
}

@media (max-width: 992px) {
    .tickets_cta_section {
        padding: 50px 0;
    }
    
    .cta_wrapper {
        padding: 35px 25px;
    }
    
    .cta_content {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .cta_content h2 {
        font-size: 32px;
    }
    
    .benefits_list {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .cta_content h2 {
        font-size: 28px;
    }
    
    .cta_content p {
        font-size: 16px;
    }
    
    .benefits_list {
        flex-direction: column;
        align-items: center;
    }
    
    .big_cta_btn {
        width: 100%;
        justify-content: center;
    }
}

.age_disclaimer_section {
    padding: 60px 0;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe6e6 100%);
    border-top: 3px solid #ff6b6b;
}

.disclaimer_content {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left: 5px solid #ff6b6b;
}

.age_warning_badge {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding: 15px 20px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    border-radius: 50px;
    color: white;
    width: fit-content;
}

.age_number {
    font-size: 24px;
    font-weight: 700;
    background: rgba(255,255,255,0.2);
    padding: 8px 12px;
    border-radius: 50%;
    min-width: 45px;
    text-align: center;
}

.warning_text {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px
}

.disclaimer_text h3 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.disclaimer_text p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.highlight {
    background: linear-gradient(135deg, #ff499e, #d264b6);
    color: white;
    padding: 3px 8px;
    border-radius: 5px;
    font-weight: 600;
}

.warning_points {
    margin: 30px 0;
}

.warning_item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 20px;
    background: #fff8f8;
    border-radius: 10px;
    border-left: 4px solid #ff6b6b;
}

.warning_item .material-icons {
    color: #ff6b6b;
    font-size: 24px;
    margin-top: 2px;
}

.warning_item p {
    margin: 0;
    font-size: 16px;
    color: #555;
}

.help_section {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin-top: 30px;
    border: 2px dashed #dee2e6;
}

.help_section h4 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.help_options {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.help_link {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    padding: 15px 20px;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 250px;
}

.help_link:hover {
    border-color: #ff499e;
    transform: translateY(-2px);
    text-decoration: none;
    color: #333;
}

.help_link .material-icons {
    color: #ff499e;
    font-size: 28px;
}

.help_link div {
    display: flex;
    flex-direction: column;
}

.help_link strong {
    font-size: 16px;
    margin-bottom: 2px;
}

.help_link span {
    font-size: 14px;
    color: #666;
}

@media (max-width: 768px) {
    .disclaimer_content {
        padding: 25px 20px;
    }
    
    .disclaimer_text h3 {
        font-size: 26px;
    }
    
    .age_warning_badge {
        width: 100%;
        justify-content: center;
    }
    
    .help_options {
        flex-direction: column;
        align-items: center;
    }
    
    .help_link {
        max-width: 100%;
    }
    
    .warning_item {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .age_disclaimer_section {
        padding: 40px 0;
    }
    
    .disclaimer_text h3 {
        font-size: 22px;
    }
    
    .disclaimer_text p {
        font-size: 15px;
    }
}

.faq_hero_section {
    background: linear-gradient(135deg, #ff499e, #d264b6, #a480cf);
    padding: 60px 0;
    color: white;
    text-align: center;
}

.faq_hero_content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.faq_hero_content p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.faq_main_section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq_container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.faq_item {
    margin-bottom: 25px;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq_item:hover {
    border-color: #ff499e;
    box-shadow: 0 5px 15px rgba(255,73,158,0.1);
}

.faq_question {
    background: #ffffff;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0
}

.faq_question .material-icons {
    color: #ff499e;
    font-size: 24px;
    flex-shrink: 0;
}

.faq_question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
    flex: 1;
}

.faq_answer {
    background: #fafafa;
    padding: 25px;
}

.faq_answer p {
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-size: 16px;
}

.faq_cta_section {
    background: linear-gradient(135deg, #49b6ff, #779be7);
    padding: 60px 0;
    text-align: center;
    color: white;
}

.faq_cta_content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.faq_cta_content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact_us_btn {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
}

.contact_us_btn:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

.main-navigation .nav-menu a.active {
    color: #ff499e;
    font-weight: 600;
}

@media (max-width: 768px) {
    .faq_hero_content h1 {
        font-size: 32px;
    }
    
    .faq_container {
        padding: 25px 20px;
    }
    
    .faq_question {
        padding: 20px;
    }
    
    .faq_answer {
        padding: 20px;
    }
    
    .faq_question h3 {
        font-size: 16px;
    }
    
    .faq_cta_content h2 {
        font-size: 28px;
    }
    
    .faq_main_section {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .faq_question {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .faq_question .material-icons {
        align-self: flex-start;
    }
}

.contact_hero_section {
    background: linear-gradient(135deg, #779be7, #a480cf, #d264b6);
    padding: 60px 0;
    color: white;
    text-align: center;
}

.contact_hero_content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact_hero_content p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto;
}

.contact_main_section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact_wrapper {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
}

.contact_form_wrapper {
    padding: 50px 40px;
    text-align: center;
}

.contact_form_wrapper h3 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

.form_container {
    width: 100%;
}

.form_group {
    margin-bottom: 25px;
    text-align: left;
}

.form_group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 15px;
}

.form_group input,
.form_group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
    background: #fafafa;
}

.form_group input:focus,
.form_group textarea:focus {
    outline: none;
    border-color: #ff499e;
    background: white;
}

.form_group textarea {
    resize: vertical;
    min-height: 140px;
}

.submit_btn {
    background: linear-gradient(135deg, #ff499e, #d264b6);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin: 0 auto;
    margin-top: 30px;
}

.submit_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,73,158,0.3);
}

@media (max-width: 768px) {
    .contact_hero_content h1 {
        font-size: 32px;
    }
    
    .contact_main_section {
        padding: 50px 0;
    }
    
    .contact_form_wrapper {
        padding: 35px 25px;
    }
    
    .contact_form_wrapper h3 {
        font-size: 26px;
    }
    
    .submit_btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact_form_wrapper {
        padding: 25px 20px;
    }
    
    .contact_wrapper {
        margin: 0 10px;
    }
}

.thankyou_section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thankyou_content {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.success_icon {
    margin-bottom: 30px;
}

.success_icon .material-icons {
    font-size: 80px;
    color: #4caf50;
    background: rgba(76,175,80,0.1);
    border-radius: 50%;
    padding: 20px;
}

.thankyou_content h1 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.thankyou_content > p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.message_summary {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    text-align: left;
    border-left: 4px solid #ff499e;
}

.message_summary h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.message_summary p {
    margin-bottom: 10px;
    color: #555;
}

.reference_number {
    background: white;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    border: 2px dashed #ff499e;
}

.reference_number p {
    margin: 0;
    font-weight: 600;
    color: #ff499e;
}

.next_steps {
    background: rgba(255,73,158,0.05);
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    text-align: left;
}

.next_steps h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.next_steps ul {
    list-style: none;
    padding: 0;
}

.next_steps li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.next_steps li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: 700;
}

.action_buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.btn_home,
.btn_faq {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn_home {
    background: linear-gradient(135deg, #ff499e, #d264b6);
    color: white;
}

.btn_home:hover {
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

.btn_faq {
    background: transparent;
    color: #ff499e;
    border: 2px solid #ff499e;
}

.btn_faq:hover {
    background: #ff499e;
    color: white;
    text-decoration: none;
}

@media (max-width: 768px) {
    .thankyou_section {
        padding: 60px 0;
    }
    
    .thankyou_content {
        padding: 35px 25px;
        margin: 0 15px;
    }
    
    .thankyou_content h1 {
        font-size: 28px;
    }
    
    .action_buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn_home,
    .btn_faq {
        width: 100%;
        justify-content: center;
        max-width: 200px;
    }
    
    .success_icon .material-icons {
        font-size: 60px;
        padding: 15px;
    }
}

.privacy_page {
    padding: 60px 0;
    background: #ffffff;
}

.privacy_content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 30px;
    background: #fafafa;
    border-radius: 8px;
}

.privacy_content h1 {
    font-size: 34px;
    color: #333;
    margin-bottom: 35px;
    text-align: center;
    font-weight: 600
}

.privacy_content h2 {
    font-size: 22px;
    color: #ff499e;
    margin-top: 30px;
    margin-bottom: 12px;
    font-weight: 500;
}

.privacy_content p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 18px;
    text-align: justify;
}

@media (max-width: 768px) {
    .privacy_page {
        padding: 40px 0;
    }
    
    .privacy_content {
        padding: 25px 20px;
        margin: 0 15px;
    }
    
    .privacy_content h1 {
        font-size: 28px;
    }
    
    .privacy_content h2 {
        font-size: 20px;
        margin-top: 25px
    }
    
    .privacy_content p {
        font-size: 15px;
        text-align: left;
    }
}

.terms_page {
    padding: 50px 0;
    background: #f9f9f9;
}

.terms_content {
    max-width: 850px;
    margin: 0 auto;
    padding: 35px 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05)
}

.terms_content h1 {
    font-size: 36px;
    color: #222;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
    border-bottom: 2px solid #ff499e;
    padding-bottom: 15px;
}

.terms_content h2 {
    font-size: 20px;
    color: #ff499e;
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: 600;
}

.terms_content p {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 15px;
    text-align: justify
}

@media (max-width: 768px) {
    .terms_page {
        padding: 30px 0;
    }
    
    .terms_content {
        padding: 25px 20px;
        margin: 0 10px;
        border-radius: 8px;
    }
    
    .terms_content h1 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .terms_content h2 {
        font-size: 18px;
        margin-top: 20px;
    }
    
    .terms_content p {
        font-size: 14px;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .terms_content {
        padding: 20px 15px;
    }
    
    .terms_content h1 {
        font-size: 24px;
    }
}

.cookies_page {
    padding: 55px 0;
    background: #ffffff;
}

.cookies_content {
    max-width: 750px;
    margin: 0 auto;
    padding: 30px 35px;
    background: #f7f7f7;
    border-radius: 6px;
    border: 1px solid #e6e6e6
}

.cookies_content h1 {
    font-size: 32px;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 650;
}

.cookies_content h2 {
    font-size: 19px;
    color: #d264b6;
    margin-top: 22px;
    margin-bottom: 8px;
    font-weight: 550;
}

.cookies_content p {
    font-size: 15px;
    line-height: 1.65;
    color: #666;
    margin-bottom: 16px;
    text-align: left;
}

@media (max-width: 768px) {
    .cookies_page {
        padding: 35px 0;
    }
    
    .cookies_content {
        padding: 20px 18px;
        margin: 0 12px;
    }
    
    .cookies_content h1 {
        font-size: 26px;
        margin-bottom: 20px;
    }
    
    .cookies_content h2 {
        font-size: 17px;
        margin-top: 18px;
    }
    
    .cookies_content p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .cookies_content {
        padding: 18px 15px;
    }
    
    .cookies_content h1 {
        font-size: 22px;
    }
    
    .cookies_content h2 {
        font-size: 16px
    }
}

.responsible_page {
    padding: 45px 0;
    background: #fafafa;
}

.responsible_content {
    max-width: 780px;
    margin: 0 auto;
    padding: 38px 30px;
    background: white;
    border-radius: 10px;
    border-top: 4px solid #ff6b6b
}

.responsible_content h1 {
    font-size: 35px;
    color: #222;
    margin-bottom: 32px;
    text-align: center;
    font-weight: 680;
}

.responsible_content h2 {
    font-size: 21px;
    color: #ff6b6b;
    margin-top: 28px;
    margin-bottom: 12px;
    font-weight: 580;
}

.responsible_content p {
    font-size: 16px;
    line-height: 1.68;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

@media (max-width: 768px) {
    .responsible_page {
        padding: 32px 0;
    }
    
    .responsible_content {
        padding: 28px 22px;
        margin: 0 8px;
    }
    
    .responsible_content h1 {
        font-size: 29px;
        margin-bottom: 26px;
    }
    
    .responsible_content h2 {
        font-size: 19px;
        margin-top: 22px;
    }
    
    .responsible_content p {
        font-size: 15px;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .responsible_content {
        padding: 22px 16px;
    }
    
    .responsible_content h1 {
        font-size: 25px;
    }
    
    .responsible_content h2 {
        font-size: 17px
    }
    
    .responsible_content p {
        font-size: 14px;
    }
}