
:root {
--primary: #a855f7;
--primary-glow: rgba(168, 85, 247, 0.4);
--secondary: #6366f1;
--accent: #f472b6;
--accent-glow: rgba(244, 114, 182, 0.3);
--bg-from: #1e1b4b;
--bg-via: #312e81;
--bg-to: #0f0a1a;
--card-bg: rgba(30, 27, 75, 0.6);
--card-border: rgba(168, 85, 247, 0.2);
--text-light: #ffffff;
--text-muted: #c7d2fe;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Open Sans', system-ui, sans-serif;
background: linear-gradient(135deg, var(--bg-from), var(--bg-via), var(--bg-to));
background-attachment: fixed;
color: var(--text-light);
line-height: 1.6;
overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', system-ui, sans-serif; font-weight: 800; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.nav {
position: fixed;
top: 0;
width: 100%;
background: rgba(15, 10, 26, 0.85);
backdrop-filter: blur(10px);
z-index: 1000;
padding: 15px 0;
border-bottom: 1px solid var(--card-border);
}
.nav-content {
display: flex;
justify-content: space-between;
align-items: center;
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
.logo {
display: flex;
align-items: center;
gap: 10px;
text-decoration: none;
color: var(--text-light);
font-size: 24px;
font-weight: 800;
}
.logo-icon { font-size: 32px; }
.nav-links {
display: flex;
gap: 30px;
align-items: center;
}
.nav-links a {
color: var(--text-muted);
text-decoration: none;
font-weight: 600;
transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.nav-links a:hover {
color: var(--primary);
transform: translateY(-2px);
}
.badge-18 {
background: var(--accent);
color: var(--text-light);
padding: 5px 12px;
border-radius: 20px;
font-weight: 800;
font-size: 14px;
box-shadow: 0 4px 15px var(--accent-glow);
}
.menu-toggle {
display: none;
background: none;
border: none;
color: var(--text-light);
font-size: 28px;
cursor: pointer;
}
.hero {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
background: linear-gradient(135deg, rgba(30, 27, 75, 0.8), rgba(49, 46, 129, 0.6)),
url('images/ban.jpeg');
background-size: cover;
background-position: center;
padding: 120px 20px 60px;
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
animation: float 20s ease-in-out infinite;
}
@keyframes float {
0%, 100% { transform: translate(0, 0) rotate(0deg); }
50% { transform: translate(30px, -30px) rotate(5deg); }
}
@keyframes pulse {
0%, 100% { transform: scale(1); box-shadow: 0 0 20px var(--primary-glow); }
50% { transform: scale(1.05); box-shadow: 0 0 40px var(--primary-glow); }
}
.hero-content { position: relative; z-index: 1; }
.hero h1 {
font-size: clamp(2.5rem, 6vw, 4.5rem);
margin-bottom: 20px;
text-shadow: 0 0 30px var(--primary-glow);
animation: float 3s ease-in-out infinite;
}
.hero p {
font-size: clamp(1.1rem, 2vw, 1.4rem);
margin-bottom: 40px;
color: var(--text-muted);
max-width: 700px;
margin-left: auto;
margin-right: auto;
}
.cta-btn {
display: inline-block;
padding: 18px 50px;
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: var(--text-light);
text-decoration: none;
border-radius: 14px;
font-weight: 800;
font-size: 1.2rem;
transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
box-shadow: 0 8px 30px var(--primary-glow), inset 0 1px 0 rgba(255,255,255,0.2);
border: none;
cursor: pointer;
animation: pulse 2s ease-in-out infinite;
}
.cta-btn:hover {
transform: scale(1.05) translateY(-3px);
box-shadow: 0 12px 40px var(--primary-glow);
}
.cta-btn:active {
transform: scale(0.98);
}
section {
padding: 80px 20px;
position: relative;
}
.section-title {
text-align: center;
font-size: clamp(2rem, 4vw, 3rem);
margin-bottom: 50px;
text-shadow: 0 0 20px var(--primary-glow);
}
.download-section {
background: var(--card-bg);
border-radius: 16px;
padding: 60px 40px;
text-align: center;
box-shadow: 0 10px 40px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
border: 1px solid var(--card-border);
max-width: 600px;
margin: 0 auto;
}
.email-form {
display: flex;
flex-direction: column;
gap: 20px;
margin-top: 30px;
}
.email-input {
padding: 18px;
border: 2px solid var(--card-border);
border-radius: 12px;
background: rgba(15, 10, 26, 0.6);
color: var(--text-light);
font-size: 1rem;
font-family: 'Open Sans', sans-serif;
transition: all 0.25s;
}
.email-input:focus {
outline: none;
border-color: var(--primary);
box-shadow: 0 0 20px var(--primary-glow);
}
.success-message {
display: none;
padding: 30px;
background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(21, 128, 61, 0.2));
border: 2px solid #22c55e;
border-radius: 12px;
color: #86efac;
font-size: 1.2rem;
font-weight: 600;
margin-top: 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);
padding: 40px 30px;
border-radius: 14px;
text-align: center;
border: 1px solid var(--card-border);
box-shadow: 0 8px 30px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.05);
transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.feature-card:hover {
transform: translateY(-8px) scale(1.02);
box-shadow: 0 15px 50px var(--primary-glow);
border-color: var(--primary);
}
.feature-icon {
font-size: 3.5rem;
margin-bottom: 20px;
display: block;
animation: float 3s ease-in-out infinite;
}
.feature-card:nth-child(2) .feature-icon { animation-delay: 0.5s; }
.feature-card:nth-child(3) .feature-icon { animation-delay: 1s; }
.feature-card:nth-child(4) .feature-icon { animation-delay: 1.5s; }
.feature-card h3 {
font-size: 1.5rem;
margin-bottom: 15px;
color: var(--primary);
}
.about-content {
background: var(--card-bg);
padding: 50px;
border-radius: 16px;
border: 1px solid var(--card-border);
box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
.about-content h3 {
color: var(--accent);
margin-bottom: 20px;
font-size: 2rem;
}
.trust-badges {
display: flex;
justify-content: center;
gap: 40px;
margin-top: 40px;
flex-wrap: wrap;
}
.badge {
display: flex;
align-items: center;
gap: 10px;
padding: 15px 25px;
background: rgba(168, 85, 247, 0.1);
border: 1px solid var(--primary);
border-radius: 10px;
font-weight: 600;
}
.badge-icon { font-size: 1.8rem; }
.faq-container {
max-width: 800px;
margin: 0 auto;
}
.faq-item {
background: var(--card-bg);
margin-bottom: 20px;
border-radius: 12px;
border: 1px solid var(--card-border);
overflow: hidden;
box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.faq-question {
padding: 25px;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
font-weight: 600;
font-size: 1.1rem;
transition: all 0.25s;
}
.faq-question:hover {
background: rgba(168, 85, 247, 0.1);
}
.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
}
.faq-answer-content {
padding: 0 25px 25px;
color: var(--text-muted);
}
.faq-item.active .faq-answer {
max-height: 500px;
}
.faq-toggle {
font-size: 1.5rem;
transition: transform 0.3s;
}
.faq-item.active .faq-toggle {
transform: rotate(180deg);
}
.disclaimer-section {
background: linear-gradient(135deg, rgba(244, 114, 182, 0.15), rgba(168, 85, 247, 0.15));
border: 2px solid var(--accent);
border-radius: 16px;
padding: 40px;
text-align: center;
margin: 60px auto;
}
.disclaimer-section h3 {
color: var(--accent);
font-size: 2rem;
margin-bottom: 20px;
}
.footer {
background: var(--bg-to);
padding: 50px 20px 30px;
border-top: 1px solid var(--card-border);
}
.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 h4 {
color: var(--primary);
margin-bottom: 20px;
}
.footer-links {
display: flex;
flex-direction: column;
gap: 10px;
}
.footer-links a {
color: var(--text-muted);
text-decoration: none;
transition: all 0.25s;
}
.footer-links a:hover {
color: var(--primary);
padding-left: 5px;
}
.footer-bottom {
text-align: center;
padding-top: 30px;
border-top: 1px solid var(--card-border);
}
.footer-18-badge {
display: inline-block;
background: var(--accent);
color: var(--text-light);
padding: 15px 30px;
border-radius: 50px;
font-weight: 800;
font-size: 2rem;
margin-bottom: 20px;
box-shadow: 0 8px 30px var(--accent-glow);
}
.modal {
display: none;
position: fixed;
z-index: 2000;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.9);
}
.modal-content {
background: linear-gradient(135deg, var(--bg-from), var(--bg-via));
margin: 10% auto;
padding: 50px;
border: 2px solid var(--accent);
border-radius: 20px;
max-width: 500px;
text-align: center;
box-shadow: 0 20px 80px rgba(244, 114, 182, 0.4);
}
.modal-content h2 {
color: var(--accent);
font-size: 2.5rem;
margin-bottom: 20px;
}
.modal-buttons {
display: flex;
gap: 20px;
justify-content: center;
margin-top: 30px;
}
.modal-btn {
padding: 15px 40px;
border: none;
border-radius: 12px;
font-weight: 800;
font-size: 1.1rem;
cursor: pointer;
transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn-confirm {
background: linear-gradient(135deg, #22c55e, #16a34a);
color: white;
}
.btn-decline {
background: linear-gradient(135deg, #ef4444, #dc2626);
color: white;
}
.modal-btn:hover {
transform: scale(1.05);
}
@media (max-width: 768px) {
.nav-links {
position: fixed;
top: 70px;
left: -100%;
width: 100%;
height: calc(100vh - 70px);
background: rgba(15, 10, 26, 0.98);
flex-direction: column;
padding: 40px;
transition: left 0.3s;
}
.nav-links.active {
left: 0;
}
.menu-toggle {
display: block;
}
.hero {
padding: 100px 20px 60px;
}
.download-section {
padding: 40px 20px;
}
.about-content {
padding: 30px 20px;
}
.modal-content {
margin: 30% auto;
padding: 30px 20px;
}
.modal-buttons {
flex-direction: column;
}
}