.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4rem;
    overflow: hidden;
}

.hero-pokeball {
    position: absolute;
    width: 200px !important;
    height: 200px !important;
    max-width: 200px !important;
    max-height: 200px !important;
    min-width: 200px !important;
    min-height: 200px !important;
    opacity: 0.2;
    z-index: 0;
    animation: float 8s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 68, 68, 0.3));
    pointer-events: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: contain;
}

@keyframes float {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0px) rotate(0deg) scale(1);
    }
    33% {
        transform: translate(-50%, -50%) translateY(-15px) rotate(3deg) scale(1.05);
    }
    66% {
        transform: translate(-50%, -50%) translateY(10px) rotate(-3deg) scale(0.95);
    }
}

.hero-section::before {
    content: 'VS';
    position: absolute;
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 900;
    font-size: 25rem;
    text-transform: uppercase;
    letter-spacing: 20px;
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.05) 0%, rgba(255, 102, 0, 0.05) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: 0;
    transform: rotate(-15deg);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 3rem;
}

.hero-title {
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 700;
    font-size: 4.5rem;
    letter-spacing: 6px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ff4444 0%, #ff6600 50%, #ff4444 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.diagonal-split {
    position: relative;
    margin: 4rem 0;
}

.diagonal-split::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 68, 68, 0.05) 50%, transparent 100%);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    z-index: 0;
}

.diagonal-split > * {
    position: relative;
    z-index: 1;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 68, 68, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(255, 68, 68, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 68, 68, 0.2);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-pokeball {
    width: 100px !important;
    height: 100px !important;
    max-width: 100px !important;
    max-height: 100px !important;
    object-fit: contain;
    margin: 0 auto 1rem auto;
    display: block;
}

.feature-card h3 {
    margin-bottom: 1rem;
}

.intro-section {
    margin-bottom: 4rem;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-section::before {
        font-size: 12rem;
    }

    .hero-pokeball {
        width: 150px !important;
        height: 150px !important;
        max-width: 150px !important;
        max-height: 150px !important;
        min-width: 150px !important;
        min-height: 150px !important;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

