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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Canvas Background */
#starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.site-title {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
}

.navigation {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #007AFF;
}

/* App Showcase Styles */
.app-showcase {
    padding: 120px 2rem 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.app-item {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.app-image {
    flex: 1;
    max-width: 300px;
}

.app-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.app-details {
    flex: 1;
    padding: 1rem;
}

.app-details h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.app-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #ccc;
}

.stars {
    color: #FFD700;
    margin-bottom: 1.5rem;
}

.app-button {
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    background: #007AFF;
    color: #fff;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.app-button:hover {
    transform: scale(1.05);
    background: #0056b3;
}

/* Animation Classes */
.animate {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 2rem;
    color: #666;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .app-item {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .app-image {
        max-width: 250px;
    }

    .site-header {
        padding: 1rem;
    }

    .navigation {
        gap: 1rem;
    }

    .site-title {
        font-size: 1.2rem;
    }
} 