main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--spacing);
}

.hero {
    background: var(--white);
    border-radius: var(--border-radius);
    color: var(--dark-text);
    padding: 5rem 2rem;
    text-align: center;
    width: 100%;
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/pattern.svg');
    opacity: 0.05;
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

h1 {
    font-size: 72px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    animation: fadeIn 0.8s ease forwards;
}

.tagline {
    font-size: 1.5rem;
    color: var(--dark-text);
    margin-bottom: 2rem;
    animation: fadeIn 0.8s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.selector-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 2rem 0;
    gap: 1rem;
    animation: fadeIn 0.8s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

select {
    padding: 1rem 1.5rem;
    border: 2px solid rgba(93, 44, 220, 0.2);
    border-radius: var(--border-radius);
    background-color: var(--white);
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    min-width: 180px;
}

select:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 8px rgba(93, 44, 220, 0.1);
    transform: translateY(-2px);
}

select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(93, 44, 220, 0.2);
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--border-radius);
    display: inline-block;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 12px rgba(93, 44, 220, 0.25);
    animation: fadeIn 0.8s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(93, 44, 220, 0.35);
}

.cta-button:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(93, 44, 220, 0.2);
}

.features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 4rem;
}

.feature {
    background: var(--white);
    color: var(--dark-text);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    max-width: 320px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.8s ease forwards;
    animation-delay: calc(0.8s + var(--index) * 0.2s);
    opacity: 0;
}

.feature:nth-child(1) {
    --index: 0;
}

.feature:nth-child(2) {
    --index: 1;
}

.feature:nth-child(3) {
    --index: 2;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(93, 44, 220, 0.1), rgba(137, 89, 249, 0.1));
    border-radius: 50%;
}

.feature-icon i {
    font-size: 36px;
    color: var(--primary-color);
}

.feature h2 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.feature p {
    color: var(--dark-text);
    line-height: 1.6;
}

@media screen and (min-width: 768px) {
    .feature:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 24px rgba(93, 44, 220, 0.2);
    }
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 48px;
    }
    
    .selector-container {
        flex-direction: column;
        align-items: center;
    }
    
    select {
        width: 100%;
        max-width: 280px;
    }
    
    .features {
        gap: 1.5rem;
    }
    
    .feature {
        max-width: 100%;
    }
}

footer {
    background: var(--primary-color);
    color: var(--text-color);
    text-align: center;
    padding: 1.5rem;
    width: 100%;
    margin-top: 4rem;
}

/* Guest/Non-logged in user styles */
.guest-hero {
    background: var(--white);
}

.guest-description {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: var(--dark-text);
    line-height: 1.6;
    animation: fadeIn 0.8s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.guest-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1rem 0;
    animation: fadeIn 0.8s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

.login-button {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.signup-button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

@media screen and (max-width: 768px) {
    .guest-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .guest-cta-buttons .cta-button {
        width: 100%;
        max-width: 280px;
    }
} 
