/* Reset and Base */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	background: linear-gradient(to right, #f9f9f9, #e8f0ff);
	color: #333;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	/* add padding top to offset fixed header height */
	padding-top: 100px; /* adjust if header height changes */
}

main > section {
padding-top: 80px; /* space so content starts below fixed header */
scroll-margin-top: 80px; /* helps if you use anchor jump */
}


a {
	text-decoration: none;
	color: #1e88e5;
}

a:hover {
	text-decoration: underline;
}

/* Containers */
.container {
	width: 90%;
	max-width: 1200px;
	margin: auto;
	padding: 2rem 0;
}

/*================= HEADER & NAV BASE =================*/
/*================= HEADER & NAV BASE =================*/
.site-header {
    background: #2c3e50;
    padding: 0.75rem 1rem;
    color: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: #f1c40f;
    text-shadow: 0 0 4px #f1c40f;
}

/* Hamburger button */
.hamburger {
    background: none;
    border: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    display: none;
    transition: transform 0.3s ease;
}

.hamburger:hover {
    color: #f1c40f;
    transform: rotate(90deg);
}

/* Nav menu */
.main-nav ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.main-nav a {
    color: white;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.main-nav a i {
    color: #f1c40f;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.main-nav a:hover,
.main-nav a:hover i {
    color: #fff;
    text-shadow: 0 0 6px #f1c40f, 0 0 12px #f1c40f;
    transform: scale(1.1);
}
/*================= RESPONSIVE / MOBILE =================*/
@media (max-width: 768px) {
    body {
        padding-top: 60px; /* offset fixed header */
    }

    .hamburger {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        background: #2c3e50;
        transition: max-height 0.4s ease, padding 0.4s ease;
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px;
        z-index: 999;
        padding: 0;
    }

    .main-nav.open {
        max-height: 500px; /* enough to show all links */
        padding: 1rem 0;
    }

    .main-nav ul {
        display: flex;            /* ensure flex is active */
        flex-direction: column;
        align-items: flex-start;  /* left-align list items */
        gap: 0.8rem;              /* optional: reduce spacing if desired */
        margin: 0;
        padding: 0 1rem;          /* optional: small left/right padding */
    }

    .main-nav a {
        font-size: 1.1rem;
        padding: 0.6rem 1.5rem;
        width: 100%;              /* full width for easier tap on mobile */
        display: flex;            /* ensure icon + text align nicely */
        align-items: center;
    }

    .main-nav a i {
        font-size: 1.3rem;
        margin-right: 0.6rem;
    }
}



/* Smooth icon glow animation */
@keyframes iconGlow {
    0%,100% { text-shadow: 0 0 4px #f1c40f; }
    50% { text-shadow: 0 0 10px #f1c40f; }
}

.main-nav a i {
    animation: iconGlow 3s ease-in-out infinite;
}


/*================= NAV ADJUST FOR MEDIUM SCREENS 1200px-769px =================*/
@media (max-width: 1200px) and (min-width: 769px) {
    .site-header .container {
        gap: 0.5rem; /* smaller gap between logo and nav */
    }

    .main-nav ul {
        gap: 0.6rem; /* much smaller gap between nav items */
    }

    .main-nav a {
        font-size: 1rem; /* slightly smaller text */
        padding: 0.25rem 0.5rem; /* tighter padding */
    }

    .main-nav a i {
        font-size: 1.05rem; /* slightly smaller icons */
        margin-right: 0.3rem; /* reduce icon spacing */
    }
}



/* TOAST-POPUP MESSAGE */
#toast-container {
	position: fixed;
	top: 1rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 9999;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.toast {
	padding: 1rem 1.2rem;
	background-color: #323232;
	color: white;
	border-radius: 5px;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
	opacity: 0;
	transform: translateY(-20px);
	animation: fadeInUp 0.3s forwards, fadeOut 0.5s 3s forwards;
	font-size: 0.95rem;
	min-width: 240px;
	max-width: 90vw;
	text-align: center;
}

.toast.info {
	background-color: #2196f3; /* blue for info/processing */
}

.toast.warning {
	background-color: #ff9800;
}

.toast.success {
	background-color: #4caf50;
}

.toast.error {
	background-color: #f44336;
}


@keyframes fadeInUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeOut {
	to {
		opacity: 0;
		transform: translateY(-20px);
	}
}




/*==========================================*/
/*================= HOME SECTION CONTAINER =================*/




/* Hero Section */
.hero-section {
	text-align: center;
	padding: 1rem 0.5rem;

	/*background: url('/static/images/fruits-bg.jpg') center/cover no-repeat;*/
	color: #fff;
	background-blend-mode: overlay;
	background-color: rgba(44, 62, 80, 0.7);
	border-radius: 16px;
}

.hero-section h2 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.hero-section p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.btn-primary {
	background-color: #523302;
	padding: 0.75rem 2rem;
	border: none;
	border-radius: 30px;
	font-size: 1rem;
	color: white;
	font-weight: bold;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.btn-primary:hover {
	background-color: #d35400;
}

.hero-section .tax-warning {
    color: orange;
    font-weight: bold;
}



/*================= MEDIA QUERY: ≤768px =================*/
@media (max-width: 768px) {
    /* HERO SECTION */
    .hero-section {
        padding: 1rem 1rem;
        border-radius: 12px;
		margin-top: 5px !important;
		padding-top: 5px !important;
    }

    .hero-section h2 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .hero-section p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        max-width: 90%;
    }

    .btn-primary {
        padding: 0.6rem 1.5rem;
        font-size: 0.95rem;
        border-radius: 25px;
    }

    /* ABOUT SECTION */
    .about-section .container {
        padding: 1rem;
    }

    .about-section .section-header {
        text-align: center;
    }

    .about-section .section-title {
        font-size: 1.5rem;
    }

    .about-section .section-subtitle {
        font-size: 1rem;
    }

    .about-content {
        flex-direction: column; /* stack text & image vertically */
        gap: 1.5rem;
    }

    .about-text {
        text-align: center;
    }

    .about-image img {
        width: 100%;
        height: auto;
        border-radius: 12px;
    }

    .about-features li {
        font-size: 0.95rem;
    }
}



.countdown-timer {
    margin-top: 1rem;
    font-weight: bold;
    font-size: 1rem;
    color: #333;
}

.countdown-timer .warning {
    color: red;
}


.password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-wrapper input {
    width: 100%;
    padding-right: 2.5rem; /* space for the eye icon */
    box-sizing: border-box;
}

.password-wrapper .toggle-password {
    position: absolute;
    right: 0.5rem;
    cursor: pointer;
    color: #2ec4b6; /* green accent */
    font-size: 1.1rem;
    user-select: none;
    transition: color 0.2s;
}

.password-wrapper .toggle-password:hover {
    color: #1fa89a; /* darker green on hover */
}






/* About Section */
/* === ABOUT SECTION STYLES === */
.about-section {
	padding: 60px 20px;
	background-color: #fff9f5;
	border-top: 3px solid #ff9f00;
}

.about-section .container {
	max-width: 1200px;
	margin: 0 auto;
}

.section-header {
	text-align: center;
	margin-bottom: 40px;
}

.section-title {
	font-size: 2.5em;
	color: #d94d00;
	margin-bottom: 10px;
}

.section-subtitle {
	font-size: 1.2em;
	color: #555;
}

.about-content {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	align-items: center;
	justify-content: space-between;
}

.about-text {
	flex: 1 1 55%;
	font-size: 1.1em;
	color: #333;
}

.about-features {
	list-style: none;
	padding-left: 0;
	margin-top: 20px;
}

.about-features li {
	margin: 10px 0;
	font-weight: 500;
}

.about-image {
	flex: 1 1 35%;
	text-align: center;
}

.about-image img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.about-grid-preview {
	margin-top: 50px;
	text-align: center;
}

.about-grid-preview h4 {
	font-size: 1.8em;
	margin-bottom: 20px;
	color: #444;
}

.grid-demo {
	display: grid;
	grid-template-columns: repeat(5, 60px);
	grid-template-rows: repeat(5, 60px);
	gap: 10px;
	justify-content: center;
}

.grid-demo.layout-5x5 {
	display: grid;
	grid-template-columns: repeat(5, 60px);
	grid-template-rows: repeat(5, 60px);
	gap: 6px;
	margin: 20px auto;
	justify-content: center;
}

.grid-cell {
	width: 60px;
	height: 60px;
	background: #fff0e6;
	border: 2px solid #ffcccb;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 24px;
	border-radius: 8px;
	box-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.grid-cell.blank {
	background: transparent;
	border: none;
	box-shadow: none;
}

.grid-cell.jackpot {
	background: #fff9d1;
	border: 2px solid #ffd700;
	font-weight: bold;
}


@media (max-width: 768px) {
	.about-section {
		padding: 10px 6px;    /* smaller padding */
	}

	.section-header {
		margin-bottom: 12px;  /* smaller margin */
	}

	.section-title {
		font-size: 1.3em;     /* smaller title */
		margin-bottom: 5px;
	}

	.section-subtitle {
		font-size: 0.85em;    /* smaller subtitle */
	}

	.about-content {
		flex-direction: column;
		gap: 12px;            /* tighter gap */
	}

	.about-text {
		flex-basis: 100%;
		font-size: 0.9em;     /* smaller body text */
	}

	.about-features {
		margin-top: 10px;
	}

	.about-features li {
		margin: 4px 0;        /* less vertical spacing */
		font-weight: 500;
		font-size: 0.8em;     /* smaller feature text */
	}

	.about-image {
		flex-basis: 100%;
		text-align: center;
	}

	.about-image img {
		max-width: 85%;
		border-radius: 8px;
	}

	.about-grid-preview {
		margin-top: 20px;
	}

	.about-grid-preview h4 {
		font-size: 1.1em;     /* smaller subtitle */
		margin-bottom: 10px;
	}

	.grid-demo, 
	.grid-demo.layout-5x5 {
		grid-template-columns: repeat(5, 32px);  /* smaller cells */
		grid-template-rows: repeat(5, 32px);
		gap: 3px;                              /* smaller gaps */
		margin: 8px auto;
	}

	.grid-cell {
		width: 32px;
		height: 32px;
		font-size: 12px;       /* smaller font */
		border-radius: 4px;
	}
}

.grid-cell img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}




/* Info Sections */
.info-section {
	margin-top: 3rem;
	background-color: #fff;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.info-section h3 {
	font-size: 1.8rem;
	color: #2c3e50;
	margin-bottom: 1rem;
}

.info-section p, .info-section ul {
	font-size: 1.1rem;
	color: #555;
}

.info-section ul {
	list-style-type: square;
	padding-left: 1.5rem;
}





/* =========================
   Footer
========================= */
.site-footer {
    background-color: #2c3e50;
    color: #ffffff;
    text-align: center;
    padding: 2rem 1rem;
    margin-top: auto;
    font-family: 'Arial', sans-serif;
}

.site-footer h3,
.site-footer h4 {
    color: #f1c40f;
    margin-bottom: 0.75rem;
}

.site-footer p {
    margin: 0.25rem 0 1rem 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #e0e0e0;
}

.site-footer a {
    color: #00ffeaa0; /* bright aqua for links */
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.site-footer a:hover {
    color: #57fff7;
    text-decoration: none;
}

/* =========================
   Contact Section
========================= */
.info-section {
    padding: 2rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.contact-card {
    background-color: #34495e;
    padding: 1rem;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.social-icons {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.social-icons a {
    font-size: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f1c40f;
    color: #2c3e50;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #57fff7;
    color: #2c3e50;
    transform: scale(1.1);
}

/* =========================
   Footer Bottom - Centered, Reduced Gap
========================= */
.footer-bottom {
    border-top: 1px solid #465a6f;
    margin-top: 1.5rem;      /* slightly less than before */
    padding-top: 1rem;       /* slightly smaller padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.4rem;             /* reduced gap between elements */
    font-size: 0.85rem;
    color: #ccc;
}

.footer-bottom .footer-left,
.footer-bottom .footer-center,
.footer-bottom .footer-right,
.footer-links {
    flex: unset;
    width: 100%;
    margin: 0;               /* remove extra margins */
}

.footer-bottom .footer-center {
    font-size: 0.9rem;
    margin: 0.25rem 0;       /* smaller vertical margin */
}

.footer-links {
    margin-top: 0.25rem;     /* smaller spacing above links */
}

.footer-links a {
    margin: 0 0.4rem;        /* tighter spacing between links */
}

/* =========================
   Category Emoji Tooltip
========================= */
.category-emoji {
    cursor: default;
}

/* =========================
   Responsive
========================= */
@media (min-width: 768px) {
    .footer-bottom .footer-left,
    .footer-bottom .footer-center,
    .footer-bottom .footer-right {
        flex: 1 1 auto;
    }

    .footer-bottom {
        text-align: left;
    }

    .footer-links {
        text-align: right;
    }
}

@media (max-width: 480px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .social-icons {
        justify-content: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .footer-links {
        text-align: center;
    }
}








/* Terms & Policy List */
#policies ul {
	list-style: none;
	padding-left: 1rem;
}

#policies ul li {
	margin-bottom: 0.5rem;
	position: relative;
	padding-left: 1.5rem;
}

#policies ul li::before {
	content: "✔";
	position: absolute;
	left: 0;
	color: green;
}

/* Form Button */
.form-section button {
	background-color: #27ae60;
	border: none;
	padding: 0.75rem;
	font-size: 1rem;
	color: #fff;
	border-radius: 6px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.form-section button:hover {
	background-color: #1e8449;
}

/* Media Queries */
@media (max-width: 768px) {
	.form-section form {
		width: 100%;
	}
}





/* CSS FOR WIN-JACKPOT SECTION */
#win-jackpot {
	padding: 40px;
	background: linear-gradient(to right, #1f1c2c, #928dab);
	color: white;
	border-radius: 16px;
	margin-top: 40px;
	box-shadow: 0 0 12px rgba(0,0,0,0.6);
	font-family: 'Segoe UI', sans-serif;
}

.jackpot-banner {
	background: #ffcc00;
	color: #000;
	font-size: 1.8rem;
	font-weight: bold;
	padding: 15px;
	border-radius: 10px;
	text-align: center;
	margin-bottom: 20px;
}

.intro {
	font-size: 1.2rem;
	margin-bottom: 20px;
}

.jackpot-table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 20px;
	font-size: 1rem;
	background: rgba(255, 255, 255, 0.1);
}

.jackpot-table th, .jackpot-table td {
	padding: 12px 15px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	text-align: center;
}

.jackpot-table th {
	background-color: rgba(0, 0, 0, 0.3);
}

.silver { background: #b0c4de; color: #000; }
.gold { background: #ffd700; color: #000; }
.platinum { background: #e5e4e2; color: #000; }
.diamond { background: #b9f2ff; color: #000; }

.play-info {
	font-size: 1.1rem;
	background: rgba(0,0,0,0.3);
	padding: 12px;
	border-radius: 8px;
	margin-bottom: 20px;
	line-height: 1.6;
}

.highlight {
	color: #ff0;
	font-weight: bold;
}

.disclaimer {
	font-size: 0.9rem;
	opacity: 0.9;
	border-top: 1px dashed rgba(255, 255, 255, 0.904);
	padding-top: 10px;
}


#win-jackpot p {
	font-size: 1.15rem;
	line-height: 1.7;
	margin: 15px 0;
	color: #fff;
	font-weight: 500;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
	animation: fadeInUp 0.8s ease-out both;
}

#win-jackpot p.intro {
	font-size: 1.3rem;
	font-weight: bold;
	color: #fffc7f;
	text-align: center;
	background: rgba(0, 0, 0, 0.2);
	padding: 12px;
	border-radius: 12px;
	box-shadow: 0 0 8px rgba(255, 255, 0, 0.4);
	animation: pulseGlow 1.5s ease-in-out infinite alternate;
}

/* Button style for #win-jackpot */
#win-jackpot .btn-primary {
	display: inline-block;
	background: linear-gradient(45deg, #f9d423, #ff4e50);
	color: #222;
	font-weight: 700;
	font-size: 1.3rem;
	padding: 0.75rem 1.5rem;
	border-radius: 40px;
	border: none;
	box-shadow: 0 5px 15px rgba(255, 212, 0, 0.6);
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	transition: background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
	user-select: none;
	margin-bottom: 30px;
}

#win-jackpot .btn-primary {
	display: inline-block;
	/* existing styles... */
	
	/* add these to center */
	margin-left: auto;
	margin-right: auto;
	display: block; /* makes margin auto center work */
	text-align: center; /* optional, for text inside */
	max-width: 300px;
}


#win-jackpot .btn-primary:hover,
#win-jackpot .btn-primary:focus {
	background: linear-gradient(45deg, #ffec6e, #ff6a6a);
	color: #111;
	box-shadow: 0 8px 20px rgba(255, 230, 0, 0.9);
	outline: none;
	text-decoration: none;
}

#win-jackpot .btn-primary:active {
	transform: translateY(2px);
	box-shadow: 0 3px 8px rgba(255, 200, 0, 0.7);
}

/* Make sure button looks good on smaller screens */
@media (max-width: 768px) {
#win-jackpot {
	padding: 8px 4px;
	margin-top: 20px;
	border-radius: 12px;
	box-shadow: 0 0 8px rgba(0,0,0,0.5);
	font-size: 0.85rem;
}

.jackpot-banner {
	font-size: 1.2rem;
	padding: 8px 10px;
	border-radius: 8px;
	margin-bottom: 12px;
}

.intro {
	font-size: 1rem;
	margin-bottom: 12px;
}

.jackpot-table {
	font-size: 0.85rem;
	margin-bottom: 12px;
}

.jackpot-table th, 
.jackpot-table td {
	padding: 6px 8px;
}

.play-info {
	font-size: 0.9rem;
	padding: 8px;
	margin-bottom: 12px;
	line-height: 1.4;
}

.disclaimer {
	font-size: 0.75rem;
	padding-top: 6px;
}

#win-jackpot p {
	font-size: 0.9rem;
	margin: 8px 0;
}

#win-jackpot p.intro {
	font-size: 1rem;
	padding: 8px;
	border-radius: 10px;
	box-shadow: 0 0 6px rgba(255, 255, 0, 0.3);
}

#win-jackpot .btn-primary {
	font-size: 0.9rem;
	padding: 0.5rem 1.2rem;
	margin-bottom: 15px;
	max-width: 220px;
	border-radius: 30px;
	box-shadow: 0 3px 8px rgba(255, 212, 0, 0.5);
}
}






#faq {
	background: linear-gradient(to right, #232526, #414345);
	padding: 40px;
	border-radius: 16px;
	color: white;
	box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
	margin-top: 40px;
}

#faq h3 {
	font-size: 1.8rem;
	margin-bottom: 25px;
	text-align: center;
	color: #ffd700;
}

.faq-item {
	margin-bottom: 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	padding-bottom: 10px;
}

.faq-question {
	width: 100%;
	text-align: left;
	background: #2d2f36;
	color: #fff;
	padding: 14px 20px;
	font-size: 1.1rem;
	font-weight: bold;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: background 0.3s ease;
	box-shadow: 0 0 6px rgba(255, 255, 255, 0.1);
}

.faq-question:hover {
	background: #3f4250;
}

.faq-answer {
	display: none;
	padding: 12px 20px;
	margin-top: 8px;
	margin-left: 40px;
	font-size: 1rem;
	color: #e0e0e0;
	line-height: 1.5;
	background: rgba(255, 255, 255, 0.219);
	border-radius: 8px;
	animation: fadeIn 0.4s ease-in-out forwards;
}

.faq-item.active .faq-answer {
	display: block;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(8px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 768px) {
#faq {
	padding: 10px 5px;
	margin-top: 20px;
	border-radius: 12px;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
	font-size: 0.85rem;
}

#faq h3 {
	font-size: 1.2rem;
	margin-bottom: 12px;
}

.faq-item {
	margin-bottom: 8px;
	padding-bottom: 6px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.faq-question {
	padding: 8px 12px;
	font-size: 0.9rem;
	border-radius: 6px;
	box-shadow: 0 0 4px rgba(255, 255, 255, 0.08);
}

.faq-question:hover {
	background: #4a4c56;
}

.faq-answer {
	padding: 8px 12px;
	margin-top: 6px;
	margin-left: 20px;
	font-size: 0.85rem;
	line-height: 1.4;
	border-radius: 6px;
}
}




/* =======================================
MODAL SYSTEM (Signup & Login Popups)
========================================== */
.modal {
	display: none;  /* ✅ Keep hidden by default */
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.65);
	backdrop-filter: blur(3px);
	justify-content: center;
	align-items: center;
	animation: fadeIn 0.4s ease-in-out;
}


.modal-content {
	background: linear-gradient(to bottom right, #ffffff, #f9f9f9);
	padding: 1rem;
	border-radius: 16px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
	max-width: 380px;
	width: 95%;
	position: relative;
	animation: slideDown 0.35s ease-out;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.modal h3 {
	margin-top: 0;
	margin-bottom: 1.5rem;
	font-size: 1.8rem;
	color: #333;
	text-align: center;
}

.modal .close {
	position: absolute;
	top: 12px;
	right: 16px;
	font-size: 1.5rem;
	font-weight: bold;
	color: #777;
	cursor: pointer;
	transition: color 0.3s ease;
}

.modal .close:hover {
	color: #d32f2f;
}

/* Animations */
@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes slideDown {
	from { transform: translateY(-40px); opacity: 0; }
	to { transform: translateY(0); opacity: 1; }
}

/* =======================================
FORMS INSIDE MODALS
========================================== */
.modal form {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.modal label {
	font-size: 0.95rem;
	font-weight: 600;
	color: #444;
}

.modal input[type="text"],
.modal input[type="tel"],
.modal input[type="email"],
.modal input[type="password"] {
	padding: 0.75rem 1rem;
	font-size: 1rem;
	border-radius: 8px;
	border: 1px solid #ccc;
	transition: border-color 0.3s ease, box-shadow 0.2s ease;
	width: 100%;
}

.modal input:focus {
	border-color: #1976d2;
	box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.1);
	outline: none;
}

.modal .checkbox {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.9rem;
	color: #333;
}

.modal .checkbox a {
	color: #1976d2;
	text-decoration: none;
}

.modal .checkbox a:hover {
	text-decoration: underline;
}

/* Submit Button */
.modal .btn-primary {
	background-color: #1976d2;
	color: white;
	border: none;
	padding: 0.9rem;
	border-radius: 8px;
	font-size: 1.05rem;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.modal .btn-primary:hover {
	background-color: #1565c0;
}

.modal .forgot-password {
	text-align: right;
	margin-top: -0.8rem;
	font-size: 0.85rem;
}

.modal .forgot-password a {
	color: #1976d2;
	text-decoration: none;
}

.modal .forgot-password a:hover {
	text-decoration: underline;
}


/* Forgot Password Modal */
#forgot-password-modal .modal-content {
	max-width: 460px;
}

#forgot-password-modal input {
	font-size: 1rem;
}

#forgot-password-modal button {
	margin-top: 1rem;
}


@media (max-width: 768px) {
.modal-content {
	padding: 0.5rem 0.75rem;
	max-width: 320px;
	border-radius: 12px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.modal h3 {
	font-size: 1.3rem;
	margin-bottom: 1rem;
}

.modal .close {
	top: 8px;
	right: 12px;
	font-size: 1.2rem;
}

.modal form {
	gap: 0.35rem;
}

.modal label {
	font-size: 0.85rem;
}

.modal input[type="text"],
.modal input[type="tel"],
.modal input[type="email"],
.modal input[type="password"] {
	padding: 0.5rem 0.75rem;
	font-size: 0.85rem;
	border-radius: 6px;
}

.modal .checkbox {
	font-size: 0.75rem;
	gap: 0.35rem;
}

.modal .btn-primary {
	padding: 0.6rem;
	font-size: 0.9rem;
	border-radius: 6px;
}

.modal .forgot-password {
	margin-top: -0.5rem;
	font-size: 0.85rem;
}

#forgot-password-modal .modal-content {
	max-width: 360px;
}

#forgot-password-modal input {
	font-size: 0.85rem;
}

#forgot-password-modal button {
	margin-top: 0.7rem;
	padding: 0.6rem;
	font-size: 0.9rem;
}
}




/* --------------------How It Works Section ----------------------*/
/* HOW IT WORKS SECTION */
#how-it-works {
	padding: 30px 15px;
	margin-top: 60px;
	background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
	border-radius: 16px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
	color: #f9f9f9;
	text-align: left;
}

/* Section Title */
#how-it-works h3 {
	font-size: 2.2rem;
	color: #ffe600;
	text-align: center;
	margin-bottom: 30px;
}

/* CTA Button */
#how-it-works .btn-primary {
	display: block;
	width: fit-content;
	margin: 0 auto 40px auto;
	padding: 12px 26px;
	background-color: #ffd700;
	color: #000;
	border-radius: 8px;
	font-weight: bold;
	font-size: 1.1rem;
	transition: background-color 0.3s ease;
	text-decoration: none;
}

#how-it-works .btn-primary:hover {
	background-color: #ffcc00;
}

/* Steps */
.how-sequence {
	display: block;
	margin-top: 20px;
}

.how-step {
	margin-bottom: 40px;
	border-left: 4px solid #ffd700;
	padding-left: 20px;
}

.how-step img {
	width: 100%;
	max-width: 500px;
	display: block;
	margin: 0 auto 15px auto;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.how-step h4 {
	font-size: 1.5rem;
	color: #ffdd57;
	margin-bottom: 8px;
}

.how-step p {
	font-size: 1rem;
	color: #e6e6e6;
	line-height: 1.6;
}

/* Fruit Multiplier Table */
.how-table-container {
	margin-top: 40px;
	background-color: rgba(255, 255, 255, 0.05);
	padding: 20px;
	border-radius: 12px;
}

.how-table-container h4 {
	font-size: 1.5rem;
	color: #ffffff;
	margin-bottom: 15px;
	text-align: center;
}

.how-table-container p {
	text-align: center;
	margin-bottom: 20px;
	color: #ddd;
}

/* Multiplier Table */
.fruit-multiplier-table {
	width: 100%;
	border-collapse: collapse;
	background-color: #222;
	color: #fff;
	margin-bottom: 15px;
	font-size: 0.95rem;
}

.fruit-multiplier-table thead {
	background-color: #444;
}

.fruit-multiplier-table th,
.fruit-multiplier-table td {
	padding: 12px 10px;
	border: 1px solid #333;
	text-align: center;
}

.fruit-multiplier-table tr:nth-child(even) {
	background-color: #2a2a2a;
}

.jackpot-row {
	background-color: #800080;
	color: #fff;
	font-weight: bold;
}

.jackpot-row td {
	color: #ffe600;
}

/* Footer Notes */
.how-footer {
	margin-top: 30px;
	font-size: 0.95rem;
	text-align: center;
	color: #dbd8d8 !important;
}

.how-footer p {
	margin-bottom: 10px;
	line-height: 1.5;
	color: #e6e3e3;
}

.how-footer a {
	color: #00d9ff;
	text-decoration: underline;
}

/* Jackpot Hours Highlight */
.jackpot-hours {
	color: #00ffcc;
	font-weight: bold;
}


@media (max-width: 768px) {
	#how-it-works {
		padding: 10px 5px;
		margin-top: 40px;
		border-radius: 12px;
		box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
		width: 100%;
	}

	#how-it-works h3 {
		font-size: 1.5rem;
		margin-bottom: 15px;
	}

	#how-it-works .btn-primary {
		padding: 8px 18px;
		font-size: 0.9rem;
		margin-bottom: 20px;
	}

	.how-sequence {
		margin-top: 15px;
	}

	.how-step {
		margin-bottom: 25px;
		padding-left: 12px;
		border-left-width: 3px;
	}

	.how-step img {
		max-width: 100%;
		margin-bottom: 10px;
		border-radius: 8px;
		box-shadow: 0 3px 8px rgba(255, 255, 255, 0.08);
	}

	.how-step h4 {
		font-size: 1.1rem;
		margin-bottom: 6px;
	}

	.how-step p {
		font-size: 0.85rem;
		line-height: 1.4;
	}

	.how-table-container {
		margin-top: 25px;
		padding: 12px;
		border-radius: 10px;
	}

	.how-table-container h4 {
		font-size: 1.1rem;
		margin-bottom: 12px;
	}

	.how-table-container p {
		margin-bottom: 15px;
		font-size: 0.85rem;
	}

	.fruit-multiplier-table {
		font-size: 0.8rem;
	}

	.fruit-multiplier-table th,
	.fruit-multiplier-table td {
		padding: 8px 6px;
	}

	.how-footer {
		margin-top: 20px;
		font-size: 0.8rem;
	}

	.how-footer p {
		margin-bottom: 6px;
		line-height: 1.3;
	}

	.how-footer a {
		font-size: 0.8rem;
	}
}



/* =========================== HOW IT WORKS VIDEOS =========================== */
.how-videos {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin: 20px 0;
    flex-wrap: wrap; /* allow wrapping on small screens */
}

.video-step {
    flex: 1 1 30%; /* roughly 3 videos per row */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.video-step h4 {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #fff;
}

.video-step iframe {
    width: 100%;
    max-width: 360px;
    height: 215px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* =========================== RESPONSIVE =========================== */
@media (max-width: 768px) {
    .how-videos {
        flex-direction: column;
        gap: 15px;
    }

    .video-step {
        flex: 1 1 100%;
    }

    .video-step iframe {
        height: 200px;
    }

    .video-step h4 {
        font-size: 0.95rem;
    }
}





/* Company Info */
#company {
	padding: 10px 8px;
	border-radius: 6px;
	margin-top: 10px;
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

#company h3,
#company h4 {
	font-size: 1rem;
	margin-bottom: 4px;
}

#company p,
#company li {
	font-size: 0.7rem;
	line-height: 1.3;
}

#company ul {
	padding-left: 12px;
	margin-bottom: 8px;
}

#company ul li {
	margin-bottom: 4px;
}

.company-subsection {
	margin-top: 8px;
	border-left-width: 2px;
	padding-left: 8px;
}

#company a {
	font-size: 0.7rem;
}



/*Review*/
/* =========================
Reviews Section
========================= */
#reviews {
	padding: 2rem;
	padding-top: 0 !important;
	border-radius: 12px;
	max-width: 1000px;
	margin: 0 auto;
}

#reviews h2 {
	font-size: 1.8rem;
	margin-bottom: 0.5rem;
	text-align: center;
	color: #333;
}

/* Reviews Container */
.reviews-container {
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
}

/* Review Card */
.review {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1rem;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.05);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}

/* Avatar */
.review .avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid #eee;
}

/* Review Content */
.review strong {
	font-size: 1rem;
	color: #222;
}

.review small {
	color: #888;
	margin-left: 0.5rem;
	font-size: 0.85rem;
}

.review-stars {
	color: #ffc107;
	margin: 0.3rem 0;
}

.review p {
	margin: 0.3rem 0 0;
	color: #555;
	line-height: 1.4;
}

/* Overall Rating */
.overall-rating {
	text-align: center;
	font-size: 1.1rem;
	margin-bottom: 1rem;
	color: #444;
}

.overall-rating .stars {
	color: #ffc107;
	font-size: 1.3rem;
	vertical-align: middle;
	margin-left: 0.3rem;
}

/* Pagination */
.pagination {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 1rem;
}

.pagination button {
	background: #f8f8f8;
	border: 1px solid #ddd;
	padding: 0.5rem 1rem;
	border-radius: 5px;
	cursor: pointer;
	font-size: 0.9rem;
	transition: background 0.2s ease, color 0.2s ease;
}

.pagination button:hover:not(:disabled) {
	background: #333;
	color: #fff;
}

.pagination button:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}



@media (max-width: 768px) {
#reviews {
	padding: 8px 10px;
	padding-top: 100px !important;
	border-radius: 6px;
	max-width: 100%;
	margin: 0 5px;
}

#reviews h2 {
	font-size: 1.1rem;
	margin-bottom: 0.25rem;
	color: #333;
}

.reviews-container {
	gap: 0.5rem;
}

.review {
	gap: 0.5rem;
	padding: 0.5rem;
	border-radius: 6px;
	box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.review:hover {
	transform: none;
	box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}

.review .avatar {
	width: 32px;
	height: 32px;
	border-width: 1.5px;
}

.review strong {
	font-size: 0.75rem;
}

.review small {
	font-size: 0.6rem;
	margin-left: 0.3rem;
}

.review-stars {
	margin: 0.1rem 0;
	font-size: 0.8rem;
}

.review p {
	font-size: 0.7rem;
	line-height: 1.3;
	margin-top: 0.2rem;
}

.overall-rating {
	font-size: 0.85rem;
	margin-bottom: 0.5rem;
}

.overall-rating .stars {
	font-size: 1rem;
	margin-left: 0.2rem;
}

.pagination {
	gap: 0.25rem;
	margin-top: 0.5rem;
}

.pagination button {
	padding: 0.25rem 0.5rem;
	font-size: 0.65rem;
	border-radius: 4px;
}
}


@media (max-width: 768px) {
/* ... other styles from before ... */

.overall-rating .stars {
	font-size: 0.75rem;  /* smaller than before */
	margin-left: 0.2rem;
	vertical-align: middle;
}
}


