html, body {
    height: 100%;
    margin: 0;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main.hero-section {
    flex: 1 0 auto;
}

.hero-section {
    min-height: calc(100vh - 60px - 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 2rem 4rem;
    background: linear-gradient(135deg, 
        rgba(var(--primary-rgb), 0.05) 0%,
        rgba(var(--accent-rgb), 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding-top: 2rem;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeIn 0.8s ease-out forwards;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    position: relative;
}


.hero-content::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    filter: blur(150px);
    opacity: 0.1;
    border-radius: 50%;
    z-index: -1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.main-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--text-primary);
    line-height: 1.2;
    margin: 0;
    position: relative;
    text-align: center;
}

.main-title .highlight {
    display: block;
    margin-top: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: clamp(2.8rem, 6vw, 4rem);
    line-height: 1.25;
    padding-top: 0.15em;
    padding-bottom: 0.15em;
    overflow: visible;
}

.main-button {
    font-size: 1.5rem;
    background: var(--primary-color);
    color: white;
    padding: 1.2rem 3.5rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.3);
    position: relative;
    overflow: hidden;
}

.main-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.main-button:hover {
    transform: translateY(-2px);
    background: var(--secondary-color);
    box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.4);
}

.main-button:hover::before {
    left: 100%;
}

.main-button i {
    font-size: 1.25rem;
    transition: transform var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
}

.main-button:hover i {
    transform: translateX(6px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
