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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    height: 100vh;
    overflow: hidden;
}

.container {
    height: 100vh;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-section {
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
}

.main-heading {
    margin-bottom: 2rem;
}

.line1 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.line2 {
    display: block;
    font-size: 3rem;
    font-weight: 700;
}

.gradient-text {
    display: inline-block;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 100% 100%;
}

.tomorrow {
    background-image: linear-gradient(90deg, #3b82f6, #a855f7);
    margin-right: 0.5rem;
}

.learning {
    background-image: linear-gradient(90deg, #f97316, #dc2626);
}

.sub-text {
    font-size: 1.1rem;
    color: #4a5568;
    font-weight: 400;
    max-width: 600px;
    line-height: 1.6;
}

/* Bottom section removed - no longer needed */

/* Responsive design */
@media (max-width: 768px) {
    .line1 {
        font-size: 2rem;
    }
    
    .line2 {
        font-size: 2.5rem;
    }
    
    .sub-text {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .top-section {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .line1 {
        font-size: 1.5rem;
    }
    
    .line2 {
        font-size: 2rem;
    }
    
    .sub-text {
        font-size: 0.9rem;
    }
}
