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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    background-color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
}

body::before {
    content: '';
    position: fixed;
    top: -15%;
    left: -15%;
    right: -15%;
    bottom: -15%;
    background: linear-gradient(
        45deg,
        #007AFF,
        #AF52DE,
        #FF2D55,
        #5AC8FA,
        #5856D6,
        #FF2D55,
        #007AFF
    );
    z-index: -1;
    filter: blur(50px);
    opacity: 1;
    mask-image: linear-gradient(
        to right,
        black 2%,
        transparent 15%,
        transparent 85%,
        black 98%
    );
    -webkit-mask-image: linear-gradient(
        to right,
        black 2%,
        transparent 15%,
        transparent 85%,
        black 98%
    );
}

body::after {
    content: '';
    position: fixed;
    top: -15%;
    left: -15%;
    right: -15%;
    bottom: -15%;
    background: linear-gradient(
        45deg,
        #007AFF,
        #AF52DE,
        #FF2D55,
        #5AC8FA,
        #5856D6,
        #FF2D55,
        #007AFF
    );
    z-index: -1;
    filter: blur(50px);
    opacity: 1;
    mask-image: linear-gradient(
        to bottom,
        black 2%,
        transparent 15%,
        transparent 85%,
        black 98%
    );
    -webkit-mask-image: linear-gradient(
        to bottom,
        black 2%,
        transparent 15%,
        transparent 85%,
        black 98%
    );
}

/* Remove the glow-overlay class since we'll use a different approach */
.glow-overlay {
    display: none;
    opacity: 10%;
}

.container {
    max-width: 100vw;
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 2rem;
    text-align: center;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.masthead {
    font-size: min(3rem, 5vh);
    font-weight: 700;
    margin: 4vh 0;
    line-height: 1.2;
    color: #333;
    padding-top: 4vh;
}

.highlight {
    color: #FF2D55;
}

.hero-image {
    margin: auto 0 0 0;
    max-width: 100%;
    height: auto;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    max-height: 48vh;
    object-fit: contain;
}

.features {
    width: 100%;
    max-width: 800px;
    margin: 4vh auto 4vh;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature-item {
    text-align: left;
    padding: 1rem;
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.feature-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .masthead {
        font-size: min(2rem, 4vh);
        margin: 3vh 0;
        padding-top: 2vh;
    }
    
    .container {
        padding: 2vh 1rem;
    }
    
    .hero-image {
        margin: 2vh auto 0;
        align-items: flex-start;
    }
    
    .hero-image img {
        max-height: 40vh;
    }
    
    .features {
        margin: 3vh auto 3vh;
        padding: 0 1rem;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-item {
        text-align: center;
    }
}

.app-store-button {
    margin: 2vh 0;
    transition: opacity 0.2s ease;
}

.app-store-button:hover {
    opacity: 0.8;
}

.app-store-button img {
    height: 48px;
    width: auto;
}

.legal-links {
    position: static;
    margin-top: 0.5rem;
}

.legal-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.7rem;
    transition: color 0.2s ease;
}

.legal-links a:hover {
    color: #333;
} 