:root {
    --primary-color: #5865F2;
    --secondary-color: #2c2f33;
    --accent-color: #99AAB5;
    --text-color: #ffffff;
    --dark-bg: #23272A;
    --section-padding: 100px 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background-color: rgba(45, 45, 45, 0.98);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-color) !important;
}

.nav-link {
    color: var(--text-color) !important;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.launch-btn {
    padding: 8px 20px;
    border-radius: 20px;
    background-color: var(--primary-color);
    border: none;
    transition: all 0.3s ease;
}

.launch-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(88, 101, 242, 0.4);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" fill-opacity="1" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,208C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    opacity: 0.4;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.1));
    pointer-events: none;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-text .lead {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

.hero-buttons .btn {
    margin-right: 15px;
    padding: 12px 30px;
    border-radius: 25px;
}

.hero-image {
    max-width: 100%;
    height: auto;
}

/* Features Section */
.features {
    background-color: var(--dark-bg);
    padding: var(--section-padding);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-weight: bold;
}

.feature-card {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.feature-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Health Facts Section */
.health-facts {
    background-color: var(--secondary-color);
    padding: var(--section-padding);
}

.fact-card {
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

.fact-card.danger {
    border-left: 4px solid #dc3545;
}

.fact-card.success {
    border-left: 4px solid #28a745;
}

.fact-card ul {
    padding-left: 20px;
}

.fact-card li {
    margin-bottom: 10px;
}

.fact-card:hover {
    transform: translateY(-5px);
}

/* About Section */
.about {
    background-color: var(--dark-bg);
    padding: var(--section-padding);
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.stats {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 1rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    flex: 1;
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    margin: 0;
    color: var(--text-color);
}

.about-image {
    max-width: 100%;
    height: auto;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #7289DA 0%, #5865F2 100%);
    padding: 80px 0;
    text-align: center;
}

.cta h2 {
    margin-bottom: 20px;
}

.cta .btn {
    margin-top: 20px;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    padding: 60px 0 20px;
}

.footer h4 {
    color: var(--text-color);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-links a {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-right: 25px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.social-links a:last-child {
    margin-right: 0;
}

.social-links .fa-discord:hover {
    color: #7289DA;
}

.social-links .fa-instagram:hover {
    color: #E1306C;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--accent-color);
}

/* Animations */
.animate__animated {
    animation-duration: 1s;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero {
        padding: 140px 0 80px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-image {
        margin-top: 40px;
    }

    .stats {
        flex-wrap: wrap;
    }

    .stat-item {
        width: 50%;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .hero-buttons .btn {
        display: block;
        margin: 10px 0;
    }

    .stat-item {
        width: 100%;
    }
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.cta-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    min-width: 120px;
}

.cta-feature i {
    font-size: 2rem;
    color: var(--primary-color);
}

.cta-feature span {
    font-weight: 500;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .cta-feature {
        width: 80%;
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }
}

/* Download Modal Styles */
.download-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.download-option {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    transition: transform 0.2s ease;
}

.download-option:hover {
    transform: translateY(-5px);
}

.download-option i {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.download-option h6 {
    margin: 10px 0 5px;
    color: var(--text-color);
}

.download-option small {
    display: block;
    margin-bottom: 15px;
}

.download-option .btn {
    width: 100%;
    border-radius: 20px;
}

/* Hero Download Button */
.hero-buttons .btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-buttons .btn-outline-light i {
    transition: transform 0.2s ease;
}

.hero-buttons .btn-outline-light:hover i {
    transform: translateY(-2px);
}

/* Navbar Download Button */
.navbar .btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 20px;
    padding: 8px 16px;
    transition: all 0.2s ease;
}

.navbar .btn-outline-light:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Download Modal Theme */
.modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
}

.modal-header .modal-title {
    color: var(--text-color);
    font-weight: 600;
}

.modal-header .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.modal-body {
    padding: 1.5rem;
}

.download-option {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.download-option h6 {
    color: var(--text-color);
    font-weight: 600;
}

.download-option small {
    color: rgba(255, 255, 255, 0.6);
}

.download-option i {
    color: var(--primary-color);
}

.modal-body .text-muted {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Custom Popup Styles */
.custom-popup {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    animation: slideIn 0.3s ease-out;
}

.custom-popup.hiding {
    animation: slideOut 0.3s ease-out;
}

.popup-content {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
}

.popup-content i {
    font-size: 24px;
    color: #fff;
}

.popup-content h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.popup-content p {
    margin: 5px 0 0;
    font-size: 14px;
    opacity: 0.9;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Download Modal Styles */
.download-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
}

.download-option {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background: rgba(52, 152, 219, 0.1);
    transition: all 0.3s ease;
}

.download-option:hover {
    background: rgba(52, 152, 219, 0.2);
    transform: translateY(-2px);
}

.download-option i {
    color: #3498db;
    margin-bottom: 10px;
}

.download-option h6 {
    margin: 10px 0 5px;
    font-weight: 600;
}

.download-option .text-muted {
    font-size: 0.9em;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a, #2c3e50);
    color: white;
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.btn-primary {
    background: linear-gradient(135deg, #3498db, #2980b9);
    border: none;
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2980b9, #3498db);
    transform: translateY(-1px);
} 