* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body {
    background-color: #ffffff;
    color: #333333;
    line-height: 1.2;
}
p {
    line-height: 1.4;
}
.pt100{
    padding-top: 100px;
}
.power{
    margin-bottom: 100px;
}
.lottery-image2{
    max-width: 555px;
    width: 100%;
    border-radius: 10px;
    margin-right: 30px;
}
.power .flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
header {
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 24px;
    font-weight: 700;
    color: #333333;
    text-decoration: none;
}
.logo span {
    color: #ff5e57;
}
nav ul {
    display: flex;
    list-style: none;
}
nav ul li {
    margin-left: 30px;
}
nav ul li a {
    text-decoration: none;
    color: #666666;
    font-weight: 500;
    transition: color 0.3s;
}
nav ul li a:hover {
    color: #ff5e57;
}
.auth-buttons a {
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    margin-left: 15px;
}
.login-btn {
    color: #666666;
    border: 1px solid #dddddd;
}
.signup-btn {
    background-color: #ff5e57;
    color: #ffffff;
}
.hamburger {
    display: none;
    cursor: pointer;
}
.banner {
    padding: 80px 0;
    background: url('../media/banner.png') center no-repeat;
    background-size: cover;
    margin-bottom: 50px;
}
.pwidth{
    max-width: 700px;
    width: 100%;
}
.subtitle {
    font-size: 18px;
    color: #444;
    margin-bottom: 0px;
}
.title {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333333;
    text-transform: uppercase;
}
h3.title{
    font-size: 36px;
}
.banner p {
    font-size: 18px;
    color: #444;
    margin-bottom: 20px;
}
.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: #333333;
}
.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}
.result-item {
    background-color: #f8f9fb;
    border-radius: 10px;
    padding: 30px;
}
.lottery-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.lottery-logo {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    border-radius: 5px;
}
.lottery-name {
    font-size: 20px;
    font-weight: 600;
}
.draw-date {
    color: #666666;
    margin-bottom: 20px;
}
.winning-numbers {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}
.number-ball {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ff5e57;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}
.prize-info {
    margin-bottom: 15px;
}
.winner-name {
    font-style: italic;
    color: #666666;
}
.lotteries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}
.lottery-item {
    background-color: #f8f9fb;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
}
.lottery-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
}
.lottery-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
}
.lottery-item p {
    color: #666666;
    margin-bottom: 20px;
}
.btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #ff5e57;
    color: #ffffff;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}
.btn:hover {
    background-color: #e04a43;
}
.about-section {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
}
.about-content {
    flex: 1;
    padding-right: 50px;
}
.about-content p{
    margin-bottom: 25px;
}
.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
}
.about-image img {
    width: 100%;
    height: auto;
    display: block;
}
.steps-section {
    background-color: #f8f9fb;
    padding: 60px 0;
    margin-bottom: 60px;
    border-radius: 10px;
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.step-item {
    text-align: center;
    padding: 30px;
}
.step-number {
    width: 60px;
    height: 60px;
    background-color: #ff5e57;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}
.step-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
}
.step-item p {
    color: #666666;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}
.blog-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.blog-image {
    width: 100%;
}
.blog-content {
    padding: 20px;
}
.blog-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}
.blog-meta {
    color: #666666;
    font-size: 14px;
    margin-bottom: 15px;
}
.blog-card p {
    color: #666666;
    margin-bottom: 15px;
}
footer {
    background-color: #333333;
    color: #ffffff;
    padding: 60px 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}
.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-decoration: none;
    display: block;
}
.footer-logo span {
    color: #ff5e57;
}
.disclaimer {
    font-size: 14px;
    color: #aaaaaa;
    margin-bottom: 15px;
    line-height: 1.6;
}
.footer-links h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}
.footer-links ul {
    list-style: none;
}
.footer-links ul li {
    margin-bottom: 10px;
}
.footer-links ul li a {
    color: #aaaaaa;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-links ul li a:hover {
    color: #ffffff;
}
.white-img{
    filter: brightness(0) invert(1);
}
.support-serv {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.support-serv a{
    line-height: 0;
}

.support-serv img{
    max-width: 150px;
    width: auto;
    max-height: 45px;
    height: auto;
}

.support-item {
    background-color: rgba(255,255,255,0.1);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
}
.support-item a {
    color: #ffffff;
    text-decoration: none;
}
.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444444;
    color: #aaaaaa;
    font-size: 14px;
}



.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}



@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}


.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fb 100%);
    padding: 0;
    border-radius: 20px;
    width: 100%;
    max-width: 450px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    animation: slideUp 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.modal-header {
    background-color: #ff5e57;
    padding: 25px;
    text-align: center;
    position: relative;
}

.modal-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ff5e57 0%, #ff8a57 50%, #ff5e57 100%);
}

.modal-title {
    font-size: 24px;
    margin: 0;
    color: white;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    color: white;
    font-size: 18px;
}

.close-modal:hover {
    background-color: rgba(255,255,255,0.3);
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px;
}

.flex {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 30px;
    margin-top: 30px;
}

.lottery-image {
    max-width: 400px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.power-block {
    flex: 1;
    min-width: 280px;
}

.power-block h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #222;
}

.power-block p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 15px;
}

.lottery-benefits {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.lottery-benefits li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #333;
}




.lottery-ball {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ff5e57;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.ball-1 {
    top: -30px;
    left: -30px;
    animation-delay: 0s;
}

.ball-2 {
    bottom: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    animation-delay: 0.5s;
}


.modal-form .form-group {
    margin-bottom: 25px;
    position: relative;
}

.modal-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
    font-size: 14px;
    padding-left: 10px;
}

.modal-form input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e3e7;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s;
    background-color: #f8f9fb;
}

.modal-form input:focus {
    border-color: #ff5e57;
    box-shadow: 0 0 0 3px rgba(255, 94, 87, 0.2);
    outline: none;
    background-color: white;
}

.form-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(to right, #ff5e57, #ff8a57);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 94, 87, 0.3);
    letter-spacing: 0.5px;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 94, 87, 0.4);
}

.form-submit:active {
    transform: translateY(0);
}


.modal-message {
    text-align: center;
    padding: 40px 30px;
}

.modal-message h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

.success-icon {
    font-size: 60px;
    color: #4CAF50;
    margin-bottom: 20px;
    animation: slideUp 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.error-icon {
    font-size: 60px;
    color: #f44336;
    margin-bottom: 20px;
    animation: slideUp 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.modal-message p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.continue-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #f8f9fb;
    color: #ff5e57;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border: 1px solid #e0e3e7;
}

.continue-btn:hover {
    background-color: white;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}
@media (max-width: 1024px) {
    .lotteries-grid, .steps-grid, .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-section {
        flex-direction: column;
    }
    .about-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
}
@media (max-width: 768px) {
    nav ul {
        display: none;
    }
    .hamburger {
        display: block;
    }
    .results-grid, .lotteries-grid, .steps-grid, .blog-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    .title {
        font-size: 36px;
    }
    nav ul{
        position: absolute;
        top: 60px;
        width: 100%;
        left: 0;
        background: #fff;
    }
    nav ul li{
        margin: 10px 0 10px 20px;
    }
    .auth-buttons a{
        font-size: 14px;
        padding: 8px 14px;
    }
    .logo{
        font-size: 20px;
    }
    .section-with-bg{
        padding: 30px!important;
    }
    .contact-container{
        flex-direction: column;
      
    }
}


@media(max-width: 480px){
    .title{
        font-size: 30px;
    }
    .auth-buttons a{
        margin-left: 7px;
    }
    h3.title{
        font-size: 30px;
    }
}