.hero {
    height: 100vh;
    background: var(--podium-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-color);
    padding: 0 1rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 215, 0, 0.03) 10px,
        rgba(255, 215, 0, 0.03) 20px
    );
    animation: backgroundMove 20s linear infinite;
}

.podium {
    background: rgba(26, 15, 60, 0.8);
    padding: 4rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    animation: fadeIn 1s ease-out;
    border: 2px solid var(--accent-color);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--accent-color), #fff, var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: none;
}

.highlight {
    color: var(--accent-color);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.hero p {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(45deg, var(--secondary-color), #ff6b6b);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(255, 62, 62, 0.4);
    border-color: var(--accent-color);
}