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

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

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

.main-container {
    padding: 20px;
}

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

ul {
    list-style: none;
}

/* Top Banner */
.top-banner {
    background-color: #0066b3;
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.certification-icons {
    display: flex;
    gap: 8px;
}

.cert-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: bold;
}

.cert-18 {
    background-color: #fff;
    color: #0066b3;
}

.cert-round {
    border-radius: 50%;
}

.blue {
    background-color: #3498db;
}

.green {
    background-color: #2ecc71;
}

.yellow {
    background-color: #f1c40f;
}

/* Header */
.header {
    background-color: white;
    padding: 15px 0;
}

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

.auth-buttons {
    display: flex;
    gap: 10px;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-dark {
    background-color: #000;
    color: white;
}

.btn-primary {
    background-color: #ff5722;
    color: white;
}

.btn-play {
    background-color: #ffeb3b;
    color: #333;
    padding: 12px 30px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.btn-play-small {
    background-color: #ffeb3b;
    color: #333;
    padding: 10px 25px;
    font-size: 14px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-yellow {
    background-color: #ffeb3b;
    color: #333;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 50px;
    font-weight: 600;
}

.arrow {
    font-size: 18px;
}

/* Hero Section */
.hero-section {
    background: radial-gradient(circle at center, #0288d1 0%, #01579b 100%);
    color: white;
    border-radius: 15px;
    margin: 20px 0;
    padding: 40px;
    display: flex;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><path d="M500,0L500,1000M0,500L1000,500" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>'), 
                radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    z-index: 1;
}

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

.hero-image {
    flex: 1;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.game-elements {
    max-width: 100%;
    height: auto;
    opacity: 0;
}

h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.text-yellow {
    color: #ffeb3b;
}

.hero-description {
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.user-avatars {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ccc;
    border: 2px solid white;
    margin-right: -15px;
    background-size: cover;
    background-position: center;
}

.avatar-1 {
    background-image: url('https://randomuser.me/api/portraits/men/32.jpg');
    z-index: 3;
}

.avatar-2 {
    background-image: url('https://randomuser.me/api/portraits/women/44.jpg');
    z-index: 2;
}

.avatar-3 {
    background-image: url('https://randomuser.me/api/portraits/men/86.jpg');
    z-index: 1;
}

.avatar-count {
    background-color: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    margin-left: 10px;
    font-size: 14px;
    font-weight: 600;
}

.rating {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.star {
    color: #ffeb3b;
    margin-right: 5px;
    font-size: 18px;
}

.rating-score {
    font-weight: bold;
    margin-right: 5px;
}

.rating-count {
    opacity: 0.8;
}

/* Jackpot Banner */
.jackpot-banner {
    background: radial-gradient(circle at center, #0288d1 0%, #01579b 100%);
    color: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}

.jackpot-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><path d="M500,0L500,1000M0,500L1000,500" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>'), 
                radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
}

.jackpot-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.jackpot-banner h2 {
    font-size: 60px;
    line-height: 1;
    margin-bottom: 10px;
    position: relative;
    font-weight: 700;
}

.dollar {
    font-size: 40px;
    vertical-align: top;
    position: relative;
    top: 10px;
}

.big-number {
    font-size: 100px;
    font-weight: 800;
}

.jackpot-date {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
}

.jackpot-info {
    opacity: 0.8;
    font-size: 14px;
}

/* $25 Million Jackpot Banner */
.jackpot-banner {
    background: #ffd700;
    color: #333;
    padding: 40px 0;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.jackpot-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.jackpot-amount {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.jackpot-amount .dollar {
    font-size: 50px;
    font-weight: 700;
    line-height: 1;
    margin-top: 15px;
}

.jackpot-amount .big-number {
    font-size: 120px;
    font-weight: 800;
    line-height: 1;
    color: #8a2be2;
}

.jackpot-amount .million {
    font-size: 24px;
    font-weight: 700;
    align-self: flex-end;
    margin-bottom: 20px;
    margin-left: 5px;
}

.countdown-timer {
    display: flex;
    gap: 15px;
}

.timer-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-value {
    background-color: white;
    color: #333;
    font-size: 24px;
    font-weight: 700;
    padding: 10px 15px;
    border-radius: 8px;
    min-width: 60px;
    text-align: center;
}

.timer-label {
    font-size: 14px;
    margin-top: 5px;
}

.jackpot-right {
    flex: 2;
    padding-left: 40px;
}

.small-heading {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.main-heading {
    font-size: 60px;
    font-weight: 800;
    color: #8a2be2;
    line-height: 1.1;
    margin-bottom: 20px;
}

.jackpot-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 600px;
}

.register-btn {
    padding: 12px 30px;
    font-size: 16px;
}

.lottery-balls {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ball {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.red-ball {
    background-color: #e74c3c;
    left: 200px;
    top: 100px;
}

.blue-ball {
    background-color: #3498db;
    left: 300px;
    top: 150px;
}

/* Game Cards */
.game-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.game-card {
    border-radius: 15px;
    padding: 30px;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><path d="M500,0L500,1000M0,500L1000,500" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>'), 
                radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
}

.card-content {
    position: relative;
    z-index: 2;
}

.card-subtitle {
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 500;
}

.card-title {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
}

.blue {
    background: radial-gradient(circle at center, #4a6bff 0%, #2541b2 100%);
}

.orange {
    background: radial-gradient(circle at center, #ff7043 0%, #e64a19 100%);
}

.green {
    background: radial-gradient(circle at center, #66bb6a 0%, #388e3c 100%);
}

.light-blue {
    background: radial-gradient(circle at center, #29b6f6 0%, #0288d1 100%);
}

/* Recent Wins Section */
.recent-wins {
    padding: 60px 0;
    background-color: #fff;
}

.section-heading {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

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

.win-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.win-image {
    height: 200px;
    overflow: hidden;
}

.win-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.win-card:hover .win-image img {
    transform: scale(1.05);
}

.win-content {
    padding: 20px;
}

.win-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.link-arrow {
    color: #0066b3;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.link-arrow:hover {
    color: #01579b;
}

.link-arrow .arrow {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.link-arrow:hover .arrow {
    transform: translateX(3px);
}

/* Play Better Section */
.play-better {
    padding: 60px 0;
    background-color: #4CAF50;
    color: white;
    position: relative;
}

.play-better::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><path d="M500,0L500,1000M0,500L1000,500" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>'), 
                radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
}

.play-better .section-heading {
    color: white;
    position: relative;
    z-index: 2;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}

.info-card {
    background-color: white;
    color: #333;
    border-radius: 10px;
    padding: 25px;
    display: flex;
    flex-direction: column;
}

.card-icon {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.triangle-icon {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 25px solid #8a2be2;
    margin-right: 10px;
}

.icon-text {
    font-weight: 600;
    font-size: 16px;
}

.card-description {
    flex-grow: 1;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.testimonials-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.testimonials-left {
    flex: 1;
}

.section-subheading {
    color: #0066b3;
    font-weight: 600;
    margin-bottom: 20px;
}

.testimonials-description {
    margin-bottom: 30px;
    line-height: 1.6;
}

.testimonials-right {
    flex: 1;
}

.testimonial-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial-stars {
    color: #FFD700;
    font-size: 24px;
    margin-bottom: 15px;
}

.testimonial-quote {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.testimonial-text {
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    margin-bottom: 20px;
}

.testimonial-nav {
    display: flex;
    gap: 10px;
    position: absolute;
    bottom: 30px;
    right: 30px;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f1f1f1;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.nav-btn:hover {
    background-color: #e0e0e0;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background-color: #5DADE2;
    color: white;
}

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

.faq-item {
    background-color: white;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #333;
    font-weight: 600;
}

.faq-toggle {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #f1f1f1;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(90deg);
}

.faq-answer {
    padding: 0 20px 20px;
    color: #333;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Footer */
.footer {
    background-color: #f5f5f5;
    padding: 60px 0 20px;
    color: #333;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-disclaimer {
    max-width: 600px;
}

.footer-disclaimer h3 {
    margin-bottom: 15px;
    font-weight: 700;
}

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

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #333;
    transition: color 0.3s ease;
}

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

.footer-certifications {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-certifications .cert-icon {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
}

.footer-certifications .cert-icon:first-child {
    width: 40px;
    height: 40px;
    background-color: #e74c3c;
    color: white;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 700;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .info-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .game-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .jackpot-content {
        flex-direction: column;
    }
    
    .jackpot-right {
        padding-left: 0;
        padding-top: 30px;
        text-align: center;
    }
    
    .jackpot-description {
        margin: 0 auto 25px;
    }
    
    .wins-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-content {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        padding: 30px;
    }
    
    h1 {
        font-size: 32px;
    }
    
    .jackpot-banner h2 {
        font-size: 40px;
    }
    
    .big-number {
        font-size: 70px;
    }
    
    .dollar {
        font-size: 30px;
    }
    
    .main-heading {
        font-size: 40px;
    }
    
    .wins-grid {
        grid-template-columns: 1fr;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .game-cards {
        grid-template-columns: 1fr;
    }
    
    .top-banner p {
        font-size: 12px;
    }
    
    .certification-icons {
        display: none;
    }
    
    .hero-description br {
        display: none;
    }
    
    .countdown-timer {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .jackpot-amount .big-number {
        font-size: 80px;
    }
}

/* Animation Styles */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.ball {
    animation: float 3s ease-in-out infinite;
}

.register-btn {
    animation: pulse 2s infinite;
}
/* Play Lotto Online Section */
.play-lotto-online {
    background: linear-gradient(135deg, #0288d1 0%, #01579b 100%);
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.play-lotto-online::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><path d="M500,0L500,1000M0,500L1000,500" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>'), 
                radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    z-index: 1;
}

.play-lotto-content {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

.play-lotto-text {
    flex: 2;
    padding-right: 40px;
}

.play-lotto-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.play-lotto-text p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

.lotto-balls-cluster {
    flex: 1;
    position: relative;
    height: 250px;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}

.feature-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    color: #333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #0066b3 0%, #01579b 100%);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 28px;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0066b3;
}

.feature-card p {
    font-size: 15px;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .play-lotto-content {
        flex-direction: column;
    }
    
    .play-lotto-text {
        padding-right: 0;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .lotto-balls-cluster {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .feature-cards {
        grid-template-columns: 1fr;
    }
    
    .play-lotto-text h2 {
        font-size: 28px;
    }
}

/* Add these styles to your existing CSS file */

/* Floating Lottery Balls */
.floating-lottery-ball {
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

/* Big Win Message */
.big-win-message {
    position: absolute;
    background-color: #5d4eb3;
    color: #ffd700;
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 28px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 3;
    animation: pulse 2s ease-in-out infinite;
}

/* Lottery Wheel */
.lottery-wheel {
    position: absolute;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 2;
    animation: spin 20s linear infinite;
}

/* Ball Trail */
.ball-trail {
    position: absolute;
    z-index: 1;
}

/* Enhanced Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Game Elements Image */
.game-elements {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    opacity: 1;
    animation: float 5s ease-in-out infinite;
}

/* Hero Image Container */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: white;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.auth-form input:focus {
    border-color: #0066b3;
    outline: none;
}

.form-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.form-checkbox input {
    margin-right: 10px;
}

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

.forgot-password {
    color: #0066b3;
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}

/* Responsive adjustments for new elements */
@media (max-width: 768px) {
    .floating-lottery-ball {
        transform: scale(0.7);
    }
    
    .lottery-wheel {
        transform: scale(0.7);
    }
    
    .big-win-message {
        font-size: 20px;
        padding: 10px 15px;
    }
    
    .ball-trail {
        transform: scale(0.7);
    }
}


@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}
