* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.5;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.87);
    background-color: #0a0a0a;
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    margin: 0;
    min-width: 320px;
    min-height: 100vh;
    background-color: #0a0a0a;
}

.app {
    min-height: 100vh;
    background-color: #0a0a0a;
    color: #fff;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-svg {
    height: 32px;
    width: auto;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    border: none;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-signin {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.btn-signin:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-download {
    background: #fff;
    color: #0a0a0a;
}

.btn-download:hover {
    background: rgba(255, 255, 255, 0.9);
}

.hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 3rem 4rem;
    text-align: center;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero p {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 1rem;
    line-height: 1.4;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
    margin-bottom: 3rem !important;
    font-weight: 400 !important;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    color: #0a0a0a;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2);
}

.arrow {
    font-size: 1.2rem;
}

.locations {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 3rem;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.location-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: transform 0.2s;
}

.location-card:hover {
    transform: translateY(-4px);
}

.location-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transition: filter 0.2s;
}

.location-card:hover .location-image {
    filter: brightness(0.9);
}

.location-name {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.profile {
    padding: 5rem 3rem;
    background: #0a0a0a;
}

.profile-container {
    max-width: 1400px;
    margin: 0 auto;
}

.profile h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.profile-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.profile-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s;
}

.profile-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.profile-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 600;
}

.profile-card p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.perks {
    padding: 5rem 3rem;
    background: #0a0a0a;
}

.perks-container {
    max-width: 1400px;
    margin: 0 auto;
}

.perks h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.perks-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4rem;
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.perk-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
}

.perk-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(103, 32, 255, 0.3);
    transform: translateY(-4px);
}

.perk-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #fff;
}

.perk-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 1.5rem;
    }

    .btn {
        padding: 0.6rem 0.8rem;
    }

    .hero {
        padding: 4rem 1.5rem 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem !important;
    }

    .locations {
        padding: 0 1.5rem;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }

    .profile {
        padding: 3rem 1.5rem;
    }

    .profile h2 {
        font-size: 2rem;
    }

    .profile-subtitle {
        font-size: 1.1rem;
    }

    .profile-grid {
        grid-template-columns: 1fr;
    }

    .perks {
        padding: 3rem 1.5rem;
    }

    .perks h2 {
        font-size: 2rem;
    }

    .perks-subtitle {
        font-size: 1.1rem;
    }

    .perks-grid {
        grid-template-columns: 1fr;
    }
}
