/* CSS Reset & Variables */
:root {
--primary: #f97316;
--primary-glow: rgba(249, 115, 22, 0.4);
--secondary: #ea580c;
--accent: #fdba74;
--accent-glow: rgba(253, 186, 116, 0.3);
--bg-start: #1a0f00;
--bg-mid: #3d2200;
--bg-end: #0f0800;
--card-bg: rgba(61, 34, 0, 0.6);
--card-border: rgba(249, 115, 22, 0.2);
--text-light: #ffffff;
--text-gray: #d1d5db;
}

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

body {
font-family: 'Nunito', system-ui, sans-serif;
font-weight: 400;
background: linear-gradient(135deg, var(--bg-start) 0%, var(--bg-mid) 50%, var(--bg-end) 100%);
background-attachment: fixed;
color: var(--text-light);
line-height: 1.6;
min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
font-family: 'Poppins', system-ui, sans-serif;
font-weight: 600;
line-height: 1.2;
}

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

img {
max-width: 100%;
height: auto;
display: block;
}

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

/* Header & Navigation */
header {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
background: rgba(26, 15, 0, 0.85);
backdrop-filter: blur(10px);
border-bottom: 1px solid var(--card-border);
}

nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 20px;
max-width: 1200px;
margin: 0 auto;
}

.logo {
font-size: 24px;
font-weight: 600;
color: var(--primary);
display: flex;
align-items: center;
gap: 10px;
}

.logo-icon {
width: 40px;
height: 40px;
background: var(--primary);
border-radius: 6px;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
color: var(--bg-start);
}

.age-badge {
background: var(--secondary);
color: white;
padding: 5px 12px;
border-radius: 4px;
font-weight: 600;
font-size: 14px;
border: 2px solid var(--primary);
}

.nav-links {
display: flex;
gap: 30px;
align-items: center;
list-style: none;
}

.nav-links a {
color: var(--text-gray);
font-weight: 500;
transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
position: relative;
}

.nav-links a:hover {
color: var(--primary);
transform: translateY(-2px);
}

.nav-links a::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background: var(--primary);
transition: width 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-links a:hover::after {
width: 100%;
}

.mobile-toggle {
display: none;
background: none;
border: 2px solid var(--primary);
color: var(--primary);
font-size: 24px;
cursor: pointer;
padding: 5px 10px;
border-radius: 4px;
}

/* Hero Section */
.hero {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
position: relative;
padding-top: 80px;
background: linear-gradient(135deg, rgba(26, 15, 0, 0.8), rgba(61, 34, 0, 0.6)), url('ban.jpeg');
background-size: cover;
background-position: center;
overflow: hidden;
}

.hero-content {
text-align: center;
max-width: 800px;
margin: 0 auto;
padding: 0 20px;
animation: fadeInUp 1s ease-out;
}

.hero h1 {
font-size: 56px;
margin-bottom: 20px;
color: var(--text-light);
text-shadow: 0 0 20px var(--primary-glow);
animation: float 3s ease-in-out infinite;
}

.hero-highlight {
color: var(--primary);
text-shadow: 0 0 30px var(--primary-glow);
}

.hero p {
font-size: 20px;
color: var(--text-gray);
margin-bottom: 40px;
}

.cta-button {
display: inline-block;
background: var(--primary);
color: white;
padding: 16px 40px;
font-size: 18px;
font-weight: 600;
border: 3px solid var(--primary);
border-radius: 6px;
cursor: pointer;
transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
box-shadow: 0 0 20px var(--primary-glow);
animation: pulse 2s ease-in-out infinite;
}

.cta-button:hover {
transform: scale(1.05);
background: transparent;
box-shadow: 0 0 40px var(--primary-glow);
}

/* App Download Section */
.app-download {
padding: 80px 20px;
background: var(--card-bg);
border-top: 3px solid var(--primary);
border-bottom: 3px solid var(--primary);
}

.section-title {
text-align: center;
font-size: 42px;
margin-bottom: 20px;
color: var(--primary);
}

.section-subtitle {
text-align: center;
font-size: 18px;
color: var(--text-gray);
margin-bottom: 50px;
}

.download-form {
max-width: 500px;
margin: 0 auto;
text-align: center;
}

.form-group {
display: flex;
gap: 10px;
margin-bottom: 20px;
}

.form-group input {
flex: 1;
padding: 16px;
border: 2px solid var(--card-border);
background: rgba(0, 0, 0, 0.4);
color: white;
font-size: 16px;
border-radius: 6px;
font-family: 'Nunito', sans-serif;
}

.form-group input:focus {
outline: none;
border-color: var(--primary);
box-shadow: 0 0 10px var(--primary-glow);
}

.form-group button {
padding: 16px 30px;
background: var(--secondary);
color: white;
border: 2px solid var(--secondary);
border-radius: 6px;
font-weight: 600;
cursor: pointer;
transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.form-group button:hover {
transform: scale(1.05);
box-shadow: 0 0 20px var(--accent-glow);
}

.success-message {
display: none;
padding: 20px;
background: rgba(34, 197, 94, 0.2);
border: 2px solid #22c55e;
border-radius: 6px;
color: #22c55e;
font-weight: 600;
}

/* Features Section */
.features {
padding: 80px 20px;
}

.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
margin-top: 50px;
}

.feature-card {
background: var(--card-bg);
border: 2px solid var(--card-border);
border-left: 4px solid var(--primary);
border-radius: 6px;
padding: 30px;
transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-card:hover {
transform: translateY(-10px) scale(1.05);
border-left-width: 8px;
box-shadow: 0 10px 40px var(--primary-glow);
}

.feature-icon {
font-size: 48px;
margin-bottom: 20px;
}

.feature-card h3 {
font-size: 24px;
margin-bottom: 15px;
color: var(--accent);
}

.feature-card p {
color: var(--text-gray);
}

/* About Section */
.about {
padding: 80px 20px;
background: var(--card-bg);
}

.about-content {
max-width: 900px;
margin: 0 auto;
text-align: center;
}

.about-content p {
font-size: 18px;
color: var(--text-gray);
margin-bottom: 20px;
line-height: 1.8;
}

.trust-badges {
display: flex;
justify-content: center;
gap: 40px;
margin-top: 50px;
flex-wrap: wrap;
}

.badge {
text-align: center;
}

.badge-icon {
font-size: 48px;
margin-bottom: 10px;
color: var(--primary);
}

.badge p {
font-weight: 600;
color: var(--accent);
}

/* FAQ Section */
.faq {
padding: 80px 20px;
}

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

.faq-item {
background: var(--card-bg);
border: 2px solid var(--card-border);
border-radius: 6px;
margin-bottom: 20px;
overflow: hidden;
}

.faq-question {
width: 100%;
text-align: left;
padding: 20px;
background: none;
border: none;
color: white;
font-size: 18px;
font-weight: 600;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
font-family: 'Poppins', sans-serif;
transition: all 0.25s;
}

.faq-question:hover {
color: var(--primary);
}

.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
}

.faq-answer-content {
padding: 0 20px 20px;
color: var(--text-gray);
line-height: 1.8;
}

.faq-item.active .faq-answer {
max-height: 500px;
}

.faq-item.active .faq-question {
color: var(--primary);
}

/* Disclaimer Section */
.disclaimer {
padding: 60px 20px;
background: rgba(234, 88, 12, 0.1);
border-top: 3px solid var(--secondary);
border-bottom: 3px solid var(--secondary);
text-align: center;
}

.disclaimer h2 {
font-size: 36px;
margin-bottom: 20px;
color: var(--primary);
}

.disclaimer p {
font-size: 16px;
color: var(--text-gray);
max-width: 800px;
margin: 0 auto 10px;
}

.disclaimer strong {
color: var(--primary);
font-weight: 700;
}

/* Footer */
footer {
background: rgba(15, 8, 0, 0.9);
padding: 60px 20px 30px;
border-top: 3px solid var(--primary);
}

.footer-content {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 40px;
margin-bottom: 40px;
}

.footer-section h3 {
color: var(--primary);
margin-bottom: 20px;
font-size: 20px;
}

.footer-section p, .footer-section a {
color: var(--text-gray);
margin-bottom: 10px;
display: block;
transition: all 0.25s;
}

.footer-section a:hover {
color: var(--primary);
transform: translateX(5px);
}

.footer-badge {
display: inline-flex;
align-items: center;
justify-content: center;
width: 80px;
height: 80px;
background: var(--secondary);
border: 4px solid var(--primary);
border-radius: 50%;
font-size: 32px;
font-weight: 700;
margin-bottom: 15px;
box-shadow: 0 0 30px var(--primary-glow);
}

.footer-bottom {
text-align: center;
padding-top: 30px;
border-top: 1px solid var(--card-border);
color: var(--text-gray);
}

/* Modal */
.modal {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.9);
z-index: 10000;
justify-content: center;
align-items: center;
}

.modal.active {
display: flex;
}

.modal-content {
background: var(--bg-mid);
border: 3px solid var(--primary);
border-radius: 6px;
padding: 40px;
max-width: 500px;
text-align: center;
box-shadow: 0 0 60px var(--primary-glow);
}

.modal-content h2 {
font-size: 36px;
margin-bottom: 20px;
color: var(--primary);
}

.modal-content p {
font-size: 18px;
margin-bottom: 30px;
color: var(--text-gray);
}

.modal-buttons {
display: flex;
gap: 20px;
justify-content: center;
}

.modal-button {
padding: 15px 30px;
font-size: 16px;
font-weight: 600;
border: 2px solid;
border-radius: 6px;
cursor: pointer;
transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-button.confirm {
background: var(--primary);
color: white;
border-color: var(--primary);
}

.modal-button.decline {
background: transparent;
color: var(--text-gray);
border-color: var(--text-gray);
}

.modal-button:hover {
transform: scale(1.05);
}

/* Point System Page */
.point-system {
padding: 120px 20px 80px;
}

.points-table {
width: 100%;
background: var(--card-bg);
border: 2px solid var(--card-border);
border-radius: 6px;
overflow: hidden;
margin: 40px 0;
}

.points-table table {
width: 100%;
border-collapse: collapse;
}

.points-table th, .points-table td {
padding: 15px;
text-align: left;
border-bottom: 1px solid var(--card-border);
}

.points-table th {
background: rgba(249, 115, 22, 0.2);
color: var(--primary);
font-weight: 600;
}

.points-table td {
color: var(--text-gray);
}

.points-table tr:hover {
background: rgba(249, 115, 22, 0.1);
}

.tips-section {
margin: 40px 0;
}

.tip-card {
background: var(--card-bg);
border-left: 4px solid var(--primary);
border-radius: 6px;
padding: 20px;
margin-bottom: 20px;
}

.tip-card h3 {
color: var(--accent);
margin-bottom: 10px;
}

.tip-card p {
color: var(--text-gray);
}

/* Privacy & Terms Pages */
.legal-page {
padding: 120px 20px 80px;
}

.legal-content {
max-width: 900px;
margin: 0 auto;
background: var(--card-bg);
border: 2px solid var(--card-border);
border-radius: 6px;
padding: 40px;
}

.legal-content h1 {
color: var(--primary);
margin-bottom: 20px;
}

.legal-content h2 {
color: var(--accent);
margin-top: 30px;
margin-bottom: 15px;
font-size: 24px;
}

.legal-content p, .legal-content li {
color: var(--text-gray);
margin-bottom: 15px;
line-height: 1.8;
}

.legal-content ul {
margin-left: 30px;
}

.back-link {
display: inline-flex;
align-items: center;
gap: 10px;
color: var(--primary);
font-weight: 600;
margin-bottom: 30px;
transition: all 0.25s;
}

.back-link:hover {
transform: translateX(-5px);
}

/* Animations */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

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

@keyframes pulse {
0%, 100% { box-shadow: 0 0 20px var(--primary-glow); }
50% { box-shadow: 0 0 40px var(--primary-glow), 0 0 60px var(--accent-glow); }
}

/* Responsive */
@media (max-width: 768px) {
.mobile-toggle {
display: block;
}

.nav-links {
position: absolute;
top: 100%;
left: 0;
right: 0;
flex-direction: column;
background: rgba(26, 15, 0, 0.98);
padding: 20px;
gap: 15px;
transform: translateY(-100%);
opacity: 0;
pointer-events: none;
transition: all 0.3s ease;
}

.nav-links.active {
transform: translateY(0);
opacity: 1;
pointer-events: all;
}

.hero h1 {
font-size: 36px;
}

.hero p {
font-size: 16px;
}

.section-title {
font-size: 32px;
}

.form-group {
flex-direction: column;
}

.features-grid {
grid-template-columns: 1fr;
}

.trust-badges {
flex-direction: column;
align-items: center;
}

.footer-content {
grid-template-columns: 1fr;
}
}

@media (max-width: 480px) {
.hero h1 {
font-size: 28px;
}

.modal-content {
padding: 30px 20px;
margin: 20px;
}

.modal-buttons {
flex-direction: column;
}

.points-table th, .points-table td {
padding: 10px;
font-size: 14px;
}

.legal-content {
padding: 20px;
}
}