* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f6f8;
    color: #1c1c1e;
    line-height: 1.6;
}

.lottoGuideHeader .lottoGuideContainer {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.lottoGuideContainer {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}


.lottoGuideHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.lottoGuideLogo {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #0057ff;
    line-height: 0;
    text-decoration: none;
}

.lottoGuideNav {
    display: flex;
    align-items: center;
}

.lottoGuideMenu {
    display: flex;
    list-style: none;
    align-items: center;
}

.lottoGuideMenu li {
    margin-left: 32px;
}

.lottoGuideMenu a {
    text-decoration: none;
    color: #1c1c1e;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    transition: color 0.3s;
}

.lottoGuideMenu a:hover {
    color: #0057ff;
}

.lottoGuideAuth {
    margin-left: 40px;
}

.lottoGuideBtn {
    padding: 10px 24px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-size: 14px;
}

.lottoGuideBtnOutline {
    background: transparent;
    border: 1px solid #0057ff;
    color: #0057ff;
    margin-right: 12px;
}

.lottoGuideBtnOutline:hover {
    background: rgba(0, 87, 255, 0.05);
}

.lottoGuideBtnFill {
    background: #0057ff;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 87, 255, 0.2);
}

.lottoGuideBtnFill:hover {
    background: #0047d6;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 87, 255, 0.25);
}

.lottoGuideBtnAlert {
    background: #ff3d00;
    color: white;
}

.lottoGuideBtnAlert:hover {
    background: #e03500;
}


.lottoGuideHero {
    padding: 100px 0 80px;
    background: url('../images/back.jpg') center no-repeat;
    background-size: cover;
    margin-bottom: 40px;
    border-radius: 0 0 12px 12px;
}

.lottoGuideHero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    margin-bottom: 24px;
    color: #1c1c1e;
    line-height: 1.2;
}

.lottoGuideHero p {
    margin: 0 auto 40px;
    font-size: 18px;
    color: #4a4a4a;
}


.lottoGuideFeatures {
    padding: 60px 0;
}

.lottoGuideSectionTitle {
    text-align: center;
    margin-bottom: 60px;
}

.lottoGuideSectionTitle h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    color: #1c1c1e;
    margin-bottom: 16px;
}

.lottoGuideSectionTitle p {
    color: #6b6b6b;
    max-width: 600px;
    margin: 0 auto;
}

.lottoGuideFeaturesGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.lottoGuideFeatureCard {
    text-align: center;
    padding: 40px 30px;
    border-radius: 12px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.lottoGuideFeatureCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.lottoGuideFeatureIcon {
    width: 60px;
    height: 60px;
    margin: 0 auto 24px;
    background-color: rgba(0, 87, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0057ff;
    font-size: 24px;
}

.lottoGuideFeatureCard h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    margin-bottom: 16px;
    color: #1c1c1e;
}


.lottoGuideGames {
    padding: 60px 0;
    background-color: #ffffff;
    border-radius: 12px;
    margin-bottom: 40px;
}

.lottoGuideGamesGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.lottoGuideGameCard {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #e0e0e0;
    transition: transform 0.3s;
}

.lottoGuideGameCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.lottoGuideGameImage {
    height: 180px;
    background-color: #f0f0f0;
    background-size: cover;
    background-position: center;
}

.lottoGuideGameContent {
    padding: 30px;
}

.lottoGuideGameContent h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    margin-bottom: 16px;
    color: #1c1c1e;
}

.lottoGuideGameContent p {
    margin-bottom: 24px;
    color: #4a4a4a;
}


.lottoGuideResults {
    padding: 60px 0;
}

.lottoGuideResultsGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.lottoGuideResultCard {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #e0e0e0;
}

.lottoGuideResultLogo {
    width: 60px;
    height: 60px;
    background-color: #f0f0f0;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #1c1c1e;
    font-size: 18px;
}

.lottoGuideResultCard h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    margin-bottom: 8px;
}

.lottoGuideResultDate {
    color: #6b6b6b;
    font-size: 14px;
    margin-bottom: 20px;
}

.lottoGuideResultNumbers {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0;
}

.lottoGuideBall {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #0057ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-family: 'Inter', sans-serif;
}

.lottoGuideResultWinner {
    font-size: 14px;
    color: #4a4a4a;
    margin-top: 8px;
}


.lottoGuideAbout {
    padding: 80px 0;
    background-color: #ffffff;
    border-radius: 12px;
    margin-bottom: 40px;
}

.lottoGuideAboutContent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.lottoGuideAboutImage {
    background-color: #f0f0f0;
    border-radius: 12px;
    line-height: 0;
    overflow: hidden;
}

.lottoGuideAboutImage img {
    width: 100%;
    height: auto;
}

.lottoGuideAboutText h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #0057ff;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lottoGuideAboutText h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    color: #1c1c1e;
    margin-bottom: 24px;
    line-height: 1.3;
}

.lottoGuideAboutText p {
    margin-bottom: 20px;
    color: #4a4a4a;
}


.lottoGuideTestimonials {
    padding: 60px 0;
}

.lottoGuideTestimonialsGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.lottoGuideTestimonialCard {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #e0e0e0;
}

.close-btn {
    line-height: 0;
    display: none;
}

.close-btn2{
    display: block;
}

.close-btn img {
    width: 24px;
    height: 24px;
    position: absolute;
    right: 14px;
    top: 14px;
}

.lottoGuideTestimonialHeader {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.lottoGuideTestimonialAvatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #f0f0f0;
    overflow: hidden;
    margin-right: 16px;
}

.lottoGuideTestimonialAvatar img {
    width: 100%;
    height: 100%;
}

.lottoGuideTestimonialInfo h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    margin-bottom: 4px;
}

.lottoGuideTestimonialInfo p {
    font-size: 14px;
    color: #6b6b6b;
}

.lottoGuideTestimonialRating {
    color: #ffcc00;
    margin-bottom: 16px;
    font-size: 14px;
}


.lottoGuideFaq {
    padding: 60px 0;
    background-color: #ffffff;
    border-radius: 12px;
    margin-bottom: 40px;
}

.lottoGuideFaqContainer {
    max-width: 800px;
    margin: 0 auto;
}

.lottoGuideFaqItem {
    margin-bottom: 16px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

.lottoGuideFaqQuestion {
    padding: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    color: #1c1c1e;
}

.lottoGuideFaqAnswer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
    color: #4a4a4a;
}

.lottoGuideFaqItem.active .lottoGuideFaqAnswer {
    padding: 0 20px 20px;
    max-height: 500px;
}


.lottoGuideFooter {
    background-color: #1c1c1e;
    color: #e0e0e0;
    padding: 60px 0 30px;
}

.lottoGuideFooterGrid {
    display: grid;
    grid-template-columns: 4fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.lottoGuideFooterLogo {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 24px;
    display: inline-block;
}

.lottoGuideFooterDisclaimer {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #a0a0a0;
}

.lottoGuideFooterLinks h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    margin-bottom: 24px;
    color: #ffffff;
}

.lottoGuideFooterLinks ul {
    list-style: none;
}

.lottoGuideFooterLinks li {
    margin-bottom: 12px;
}

.lottoGuideFooterLinks a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.lottoGuideFooterLinks a:hover {
    color: #ffffff;
}

.lottoGuideFooterSupport {
    margin-top: 30px;
}

.age {
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 15px;
    color: #0057ff;
    text-decoration: none;
    line-height: 0;
    vertical-align: middle;
    font-size: 14px;
}

.lottoGuideFooterSupport a {
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 15px;
    color: #0057ff;
    text-decoration: none;
    line-height: 0;
    vertical-align: middle;
    font-size: 14px;
}

.lottoGuideFooterSupport img {
    max-width: 190px;
    width: auto;
    max-height: 50px;
    height: auto;
}

.lottoGuideFooterBottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
    color: #6b6b6b;
}

        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }
        
        .modal-content {
            background: white;
            padding: 30px;
            border-radius: 8px;
            width: 90%;
            max-width: 400px;
            position: relative;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        }

        .modal-content h2{
            margin-bottom: 20px;
        }
        
        .close-btn2 {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            cursor: pointer;
            color: #666;
        }
        
        
        .form-container {
            display: none;
        }
        
        .form-container.active {
            display: block;
        }
        
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: #555;
        }
        
        .form-group input {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
            box-sizing: border-box;
        }
        

        .switch-form {
            text-align: center;
            margin-top: 20px;
            color: #666;
        }
        
        .switch-form a {
            color: #0057ff;
            text-decoration: none;
            font-weight: bold;
            cursor: pointer;
        }
        
        
        .message {
            display: none;
            padding: 12px;
            margin-bottom: 20px;
            border-radius: 4px;
            font-size: 14px;
        }
        
        .success {
            background: rgba(0, 200, 83, 0.1);
            border-left: 3px solid #00c853;
            color: #00c853;
        }
        
        .error {
            background: rgba(255, 61, 0, 0.1);
            border-left: 3px solid #ff3d00;
            color: #ff3d00;
        }
        
        
.lottoGuideMenuToggle{
    display: none;
}

.powerballSection {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.powerballContainer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.powerballImage img{
    max-width: 500px;
    width: 100%;
    border-radius: 12px;
}

.powerballImage{
    margin-right: 60px;
}

.powerballContent {
    flex: 1 1 500px;
}

.powerballContent h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #222;
}

.powerballContent p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.powerballList {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.powerballList li {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.powerballList li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #69a507;
    font-weight: bold;
}

.powerballSection .lottoGuideContainer{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lottoGuideBtn {
    background-color: #69a507;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.lottoGuideBtn:hover {
    background-color: #558f03;
}


@media (max-width: 768px) {
    .powerballContainer {
        flex-direction: column;
    }

    .powerballImage, .powerballContent {
        flex: 1 1 100%;
    }
}







@media (max-width: 576px) {
    .lottoGuideModalContent {
        width: 95% !important;
        padding: 30px 20px !important;
    }

    .lottoGuideModalTitle {
        font-size: 24px !important;
    }
}


@media (max-width: 1024px) {

    .lottoGuideFeaturesGrid,
    .lottoGuideResultsGrid,
    .lottoGuideTestimonialsGrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lottoGuideAboutContent {
        grid-template-columns: 1fr;
    }

    .lottoGuideAboutImage {
        order: -1;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .lottoGuideMenuToggle{
        display: block;
    }
    .close-btn {
        display: block;
    }

    .contact-flex {
        flex-direction: column !important;
        display: flex !important;
        gap: 20px !important;
    }

    .contact-form {
        width: 100%;
    }

    .lottoGuideMenuToggle {
        display: block;
    }

    .lottoGuideMenu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s;
        z-index: 999;
    }

    .lottoGuideMenu.active {
        right: 0;
    }

    .lottoGuideMenu li {
        margin: 16px 0;
    }

    .lottoGuideAuth {
        margin-left: 0;
        margin-top: 24px;
        display: flex;
        flex-direction: column;
    }

    .lottoGuideBtnOutline {
        margin-right: 0;
        margin-bottom: 12px;
    }

    .lottoGuideFeaturesGrid,
    .lottoGuideGamesGrid,
    .lottoGuideResultsGrid,
    .lottoGuideTestimonialsGrid {
        grid-template-columns: 1fr;
    }

    .lottoGuideFooterGrid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lottoGuideHero h1 {
        font-size: 32px;
    }
}

@media(max-width: 767px){
    .powerballSection .lottoGuideContainer{
        flex-direction: column;
    }
    .powerballImage, .powerballContent{
        margin: 0 0 20px 0;
    }
}