@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');



:root {
    --primary-color: #e53935;         /* Red from the red bingo ticket */
    --secondary-color: #1976d2;       /* Blue from the blue bingo ticket */
    --dark-color: #333333;            /* Dark neutral for contrast */
    --light-color: #fdfdfd;           /* Very light background */
    --accent-color: #ffb300;          /* Yellow-orange from the pencil */
    --text-color: #212121;            /* Standard readable dark text */
    --light-text: #ffffff;            /* For text on dark backgrounds */
    --card-bg: #f3f6fa;               /* Light gray-blue background for cards */
    --gradient-start: #e53935;        /* Match primary */
    --gradient-end: #1976d2;          /* Match secondary */
    --success-color: #43a047;         /* Green from ball 3 */
    --warning-color: #fb8c00;         /* Orange from ball 1 */
  }
  
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--light-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll during animations */
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(35, 150, 127, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(35, 150, 127, 0); }
    100% { box-shadow: 0 0 0 0 rgba(35, 150, 127, 0); }
}

@keyframes floatAnimation {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

@keyframes shimmer {
    0% { background-position: -100% 0; }
    100% { background-position: 200% 0; }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3 {
    font-weight: 700;
}

h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: var(--dark-color);
}

h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}
/* Section headers underline animation */
h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.8s ease;
}
section:hover h2::after {
    width: 100%;
}
p {
    margin-bottom: 1rem;
    color: var(--text-color);
}

a {
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow: hidden;
}
/* Button hover ripple effect */
button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}


button:hover::after {
    width: 300px;
    height: 300px;
}

.highlight {
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
}

/* Highlight text animation */
.highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.highlight:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

section {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

/* Staggered fade-in animation for sections */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* Header Styles */
header {
    background-color: white;
    padding: 0.1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
header.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

/* .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
} */

.logo span {
    color: var(--accent-color);
}

.contact-btn {
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    color: white;
    border-radius: 30px;
    padding: 0.7rem 1.5rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(35, 150, 127, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(35, 150, 127, 0.4);
}

/* Age Banner */
.age-banner {
    background-color: var(--warning-color);
    padding: 0.5rem 0;
    position: relative;
    overflow: hidden;
}
.age-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 3s infinite;
}

.age-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.age-banner i {
    margin-right: 0.5rem;
    color: var(--dark-color);
    animation: pulseGlow 2s infinite;
}

.age-banner p {
    margin-bottom: 0;
    text-align: center;
    color: var(--dark-color);
    font-weight: 600;
}

/* Hero Section */
.hero {
    background-color: white;
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle, rgba(35, 150, 127, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

.hero-div {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    /* align-items: center; */
    position: relative;
    z-index: 1;
}
.hero-img{
    height: auto;
    width: auto;
}
.hero-content {
    flex: 1;
    min-width: 300px;
    animation: fadeUp 1s ease forwards;
}



.hero-content h1 {
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease 0.2s forwards;
    text-transform: capitalize;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease 0.4s forwards;
}

.hero-actions {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    min-width: 300px;
   justify-content: start;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease 0.6s forwards;
}

.play-btn {
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    color: white;
    border-radius: 30px;
    padding: 1rem 2rem;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(35, 150, 127, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulseGlow 2s infinite;
}

.play-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(35, 150, 127, 0.4);
}

.play-btn i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.play-btn:hover i {
    transform: translateX(5px);
}

.register-btn {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    /* display: flex;
    align-items: center;
    justify-content: center; */
}


.register-btn:hover {
    background-color: rgba(35, 150, 127, 0.1);
    transform: translateY(-2px);
}

/* Countdown Section */
.count-section {
    background: linear-gradient(135deg, var(--dark-color), var(--primary-color));
    color: var(--light-text);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.count-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
    animation: rotate 60s linear infinite;
}


.countdown {
    position: relative;
    z-index: 1;
}

.countdown-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.countdown-item {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    padding: 1.5rem;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: floatAnimation 5s infinite ease-in-out;
}

.countdown-item:nth-child(2) {
    animation-delay: 0.5s;
}

.countdown-item:nth-child(3) {
    animation-delay: 1s;
}

.countdown-item:nth-child(4) {
    animation-delay: 1.5s;
}

.countdown-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.count {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
    transition: all 0.3s ease;
}

.countdown-item:hover .count {
    transform: scale(1.1);
}

.label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
}

.countdown-separator {
    display: none;
}

.draw-info {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    animation: pulseGlow 3s infinite;
}

.draw-info:hover {
    transform: scale(1.02);
    background-color: rgba(255, 255, 255, 0.15);
}

.draw-info h3 {
    font-size: 1.2rem;
    color: white;
}


/* Lottery Cards */
.recent-lotteries {
    background-color: white;
    padding: 5rem 0;
}

.lottery-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.lottery-card {
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.5s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.lottery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.lottery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.lottery-card:hover::before {
    transform: scaleX(1);
}

.lottery-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.lottery-card:hover .lottery-icon {
    transform: scale(1.1) rotate(5deg);
}

.lottery-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.lottery-card h2 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.lottery-card:hover h2 {
    color: var(--primary-color);
}

.lottery-card p {
    color: #666;
    transition: all 0.3s ease;
}

/* Accomplishments Section */
.accomplishments {
    background-color: var(--light-color);
    padding: 5rem 0;
}

.accomplishments h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.accomplishment-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.accomplishment-card {
    background-color: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.accomplishment-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to top, rgba(35, 150, 127, 0.05), transparent);
    transition: height 0.5s ease;
    z-index: 0;
}

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

.accomplishment-card:hover::after {
    height: 100%;
}

.accomplishment-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.accomplishment-card:hover .accomplishment-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 5px 15px rgba(35, 150, 127, 0.3);
}

.accomplishment-icon i {
    transition: all 0.3s ease;
}

.accomplishment-card:hover .accomplishment-icon i {
    transform: scale(1.2);
}

/* Responsible Play Section */
.responsible-play {
    background-color: var(--dark-color);
    color: #f4f4f4;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.responsible-play::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    opacity: 0.05;
    filter: blur(8px);
    z-index: 0;
}

.responsible-play .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.responsible-header {
    text-align: center;
    margin-bottom: 4rem;
}

.responsible-play h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.responsible-play h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.header-tagline {
    max-width: 700px;
    margin: 1.5rem auto 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #cccfd6;
}

.responsible-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0 4rem;
}

.responsible-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.responsible-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.card-icon {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.card-icon svg {
    stroke: var(--secondary-color);
}

.responsible-play h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.responsible-play h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.responsible-play p {
    color: #a9adb8;
    margin-bottom: 0;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.responsible-card:hover p {
    color: #f4f4f4;
}

.responsible-play a {
    color: var(--secondary-color);
    text-decoration: none;
    position: relative;
    font-weight: 500;
    transition: all 0.3s ease;
}

.responsible-play a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--secondary-color);
    transform: scaleX(0.4);
    opacity: 0.6;
    transform-origin: left;
    transition: all 0.3s ease;
}

.responsible-play a:hover {
    color: white;
}

.responsible-play a:hover::after {
    transform: scaleX(1);
    opacity: 1;
}

.responsible-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.responsible-note {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.responsible-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 2rem;
}

.responsible-logos img {
    height: 40px;
    opacity: 0.8;
    filter: grayscale(30%);
    transition: all 0.4s ease;
}

.responsible-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.08);
}

@media (max-width: 768px) {
    .responsible-play {
        padding: 4rem 0;
    }
    
    .responsible-grid {
        grid-template-columns: 1fr;
    }
    
    .responsible-logos {
        gap: 2rem;
    }
    
    .responsible-logos img {
        height: 45px;
    }
}

/* Newsletter Section */
.newsletter {
    background-color: var(--light-color);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(35, 150, 127, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

.new-form {
    background-color: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.new-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.new-form h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 1rem;
    align-items: end;
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 0;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.form-group input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #DDD;
    border-radius: 8px;
    font-size: 1rem;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.form-group input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(35, 150, 127, 0.2);
    outline: none;
}

.form-group input:focus + label {
    color: var(--primary-color);
}

/* Input field animation */
.form-group input::placeholder {
    transition: all 0.3s ease;
}

.form-group input:focus::placeholder {
    opacity: 0;
    transform: translateX(10px);
}

/* Success message animation */
#successMessage {
    display: none;
    color: var(--success-color);
    font-weight: 600;
    text-align: center;
    margin-top: 1rem;
    /* opacity: 0; */
    transform: translateY(20px);
}

#successMessage.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: fadeUp 0.5s ease forwards;
}


/* Footer */
footer {
    background-color: var(--dark-color);
    padding: 4rem 0 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom left, rgba(35, 150, 127, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 0;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-logo span {
    color: var(--primary-color);
    display: inline-block;
    transition: transform 0.3s ease;
}

.footer-logo:hover span {
    transform: translateY(-3px);
}

.footer-nav {
    display: flex;
    gap: 1.5rem;
}

.footer-nav a {
    color: #CCC;
    transition: all 0.3s ease;
    position: relative;
}

.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.footer-nav a:hover {
    color: var(--primary-color);
}

.footer-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.footer-actions {
    display: flex;
    gap: 1rem;
}

.footer-actions .contact-btn {
    background: white;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.footer-actions .contact-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.footer-actions .register-btn {
    background: transparent;
    color: white;
    border: 1px solid var(--primary-color);
    padding: 0.7rem 1.5rem;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.8rem;
}

.footer-actions .register-btn:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

footer .copyright {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

footer .copyright:hover {
    color: white;
}

footer .copyright .highlight {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

footer .copyright:hover .highlight {
    color: var(--light-text);
}
/* Age Verification Popup */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup {
    background: white;
    color: var(--text-color);
    text-align: center;
    padding: 3rem;
    border-radius: 16px;
    width: 500px;
    max-width: 90%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.popup h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--warning-color);
    font-weight: 800;
}

.popup p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.popup-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.yes-btn {
    background: var(--success-color);
    color: white;
    border-radius: 30px;
    padding: 0.8rem 1.5rem;
}

.no-btn {
    background: var(--secondary-color);
    color: white;
    border-radius: 30px;
    padding: 0.8rem 1.5rem;
}

/* Responsive Styles */
/* Responsive Styles */
@media (max-width: 992px) {
    .hero-div {
        flex-direction: column;
        text-align: center;
    }

    .hero-actions {
        min-width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .countdown-content {
        flex-wrap: wrap;
    }

    .newsletter-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    section {
        padding: 3rem 0;
    }

    .countdown-item {
        min-width: 70px;
        padding: 1rem;
    }

    .count {
        font-size: 2rem;
    }

    .new-form {
        padding: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-nav, .footer-actions {
        flex-direction: column;
        width: 100%;
    }
    .hero-img{
        height: 300px;
        width: auto;
    }
    .contact-btn{
        padding: 0.5rem 1.2rem
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.8rem;
    }

    .hero {
        padding: 3rem 0;
    }

    .countdown-item {
        min-width: 60px;
        padding: 0.8rem;
    }

    .count {
        font-size: 1.5rem;
    }

    .label {
        font-size: 0.7rem;
    }

    .popup {
        padding: 2rem;
    }

    .popup h1 {
        font-size: 3rem;
    }

    .popup-buttons {
        flex-direction: column;
    }
    .logo img{
        height: 60px;
    }
}

form {
    width: 100%;
}

.form-group {
    margin-bottom: 20px;
    width: 100%;
}

label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #333;
    border-radius: 5px;
    /* background-color: #1a1f2b; */
    color: #000;
    font-size: 16px;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

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

/* Checkbox Styling */
.checkbox-group {
    display: flex;
    align-items: flex-start;
}

input[type="checkbox"] {
    margin-right: 10px;
    /* margin-top: 5px; */
}

.checkbox-label {
    font-size: 14px;
    line-height: 1.4;
    display: flex;
    /* margin: 15px 0; */
}

.colored-link {
    color: var(--primary-color)e;
    text-decoration: none;
}

.colored-link:hover {
    text-decoration: underline;
}

.submit-btn:hover {
    background-color: var(--primary-color);
}
.signup-form {
    width: 100%;
    max-width: 650px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
/* notification */

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

.modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
}

.close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}
.contact-content{
    padding: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
   
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.terms{
    display: flex;
    margin: 10px 0;
}

.form-group-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns */
    gap: 1rem; /* Space between the fields */
}
.contact-form{
    max-width: 650px;
}
.policy-page{
    background-color: #ffffff; 
    padding: 2rem; 
    border-radius: 12px; 
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0; 
    margin: 10px auto; 
}
/* Responsive Design for Grid Layout */
@media (max-width: 768px) {
    .form-group-grid {
        grid-template-columns: 1fr; /* Stack fields vertically on smaller screens */
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-form {
        padding: 20px 15px;
    }


    .description {
        font-size: 14px;
    }

    input[type="text"],
    input[type="email"],
    textarea {
        padding: 10px;
        font-size: 14px;
    }

    .submit-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    .checkbox-label {
        font-size: 12px;
    }
}


.forgot-password {
    display: block;
    text-align: right;
    font-size: 12px;
    color: #8a5cf2;
    text-decoration: none;
    margin-bottom: 15px;
}
.error-message {
    color: red;
    font-size: 14px;
    margin-top: 10px;
    display: none;
}
.signup-link {
    margin-top: 15px;
    font-size: 14px;
}

.signup-link a {
    color: var(--primary-color);
    text-decoration: none;
}

.age-restriction {
    width: 100%;
    height: 100vh;
    background-color: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

/* Content box */
.content {
    max-width: 600px;
    padding: 20px;
}

/* 18+ Icon */
.icon {
    font-size: 50px;
    font-weight: bold;
    border: 3px solid white;
    border-radius: 50%;
    display: inline-block;
    padding: 20px 30px;
    margin-bottom: 20px;
}

/* Message Text */
.message {
    font-size: 22px;
    font-weight: bold;
    color: #f3f6fa;
}

/* Responsive Design */
@media (max-width: 600px) {
    .icon {
        font-size: 40px;
        padding: 15px 25px;
    }
    .message {
        font-size: 18px;
    }
}