:root {
    --primary: #ff007f; /* Neon Pink */
    --secondary: #ffd700; /* Gold */
    --accent: #00ffff; /* Neon Blue */
    --bg-dark: #0f0c29;
    --bg-gradient: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    --card-bg: rgba(255, 255, 255, 0.05);
    --text-white: #ffffff;
    --text-muted: #b0b0b0;
    --container-width: 1200px;
}

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

body {
    background: var(--bg-gradient);
    color: var(--text-white);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    letter-spacing: -1px;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }

/* Header */
header {
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    color: var(--text-white);
}

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

.online-status {
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    background: #00ff00;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff00;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

/* Hero */
#hero {
    padding: 100px 0 60px;
    position: relative;
}

.badge {
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
}

#hero h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

#hero h1 span {
    background: linear-gradient(to right, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#hero p {
    font-size: 20px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 20px 40px;
    background: linear-gradient(to right, #ff007f, #ff00ff);
    color: white;
    text-decoration: none;
    font-weight: 900;
    font-size: 22px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(255, 0, 127, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.cta-button small {
    display: block;
    font-size: 12px;
    font-weight: 400;
    margin-top: 5px;
    opacity: 0.8;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 0, 127, 0.6);
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.countdown-container {
    margin-top: 30px;
    font-weight: 700;
    font-size: 18px;
    color: var(--secondary);
}

/* Feedbacks */
#feedbacks {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.2);
}

#feedbacks h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.feedback-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feedback-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feedback-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.feedback-card:hover img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
    pointer-events: none;
}

/* Features */
#features {
    padding: 80px 0;
}

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

.feature-item {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

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

.feature-item h3 {
    margin-bottom: 15px;
    color: var(--accent);
}

/* Final CTA */
#final-cta {
    padding: 100px 0;
    background: url('https://www.transparenttextures.com/patterns/dark-matter.png');
}

#final-cta h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.cta-button.secondary {
    background: linear-gradient(to right, var(--secondary), #f5af19);
    color: #000;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

/* Footer */
footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: var(--text-muted);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    #hero h1 { font-size: 40px; }
    #hero p { font-size: 18px; }
    .grid-3 { grid-template-columns: 1fr; }
    #hero { padding: 60px 0 40px; }
    .header-flex { flex-direction: column; gap: 15px; }
}
