/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #212121;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
}

.logo a {
    color: #ffffff;
    text-decoration: none;
}

.highlight {
    color: #ffd700;
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    margin-left: 30px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ffd700;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 5px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Navigation */
@media (max-width: 992px) {
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        cursor: pointer;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease-in-out;
        z-index: 1000;
        padding: 80px 20px 40px;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    .nav-list li {
        margin: 15px 0;
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.3s ease;
    }

    .nav.active .nav-list li {
        opacity: 1;
        transform: translateX(0);
        transition-delay: 0.2s;
    }

    .nav-list li:nth-child(2) { transition-delay: 0.1s; }
    .nav-list li:nth-child(3) { transition-delay: 0.2s; }
    .nav-list li:nth-child(4) { transition-delay: 0.3s; }
    .nav-list li:nth-child(5) { transition-delay: 0.4s; }

    .nav-link {
        margin: 0;
        padding: 12px 0;
        font-size: 1.2rem;
        display: block;
        width: 100%;
    }

    .mobile-menu-overlay {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* Coming Soon Section */
.coming-soon {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 60px;
    background-color: #212121;
}

.coming-soon-content {
    max-width: 800px;
    margin: 0 auto;
}

.coming-soon h1 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    color: #ffffff;
}

.message {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    backdrop-filter: blur(5px);
}

.message p {
    margin-bottom: 15px;
    font-size: 1.2rem;
    line-height: 1.8;
}

.message p:last-child {
    margin-bottom: 0;
}

.app-stores {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.app-store, .play-store {
    max-width: 180px;
    height: auto;
    transition: transform 0.3s ease;
}

.app-store:hover, .play-store:hover {
    transform: translateY(-5px);
}

.btn-home {
    display: inline-block;
    background-color: #ffd700;
    color: #212121;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid #ffd700;
}

.btn-home:hover {
    background-color: transparent;
    color: #ffd700;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .coming-soon h1 {
        font-size: 2.5rem;
    }
    
    .message p {
        font-size: 1rem;
    }
    
    .app-stores {
        flex-direction: column;
        align-items: center;
    }
    
    .app-store, .play-store {
        max-width: 160px;
    }
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.coming-soon-content {
    animation: fadeIn 1s ease-out;
}