/* Hero Section Standardization */
.hero-section,
.about-hero,
.portfolio-hero,
.blog-hero,
.contact-hero,
.resources-hero,
.glossary-hero {
    min-height: 70vh !important;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* Add pulse beams to all hero sections */
.hero-section .pulse-beam,
.about-hero .pulse-beam,
.portfolio-hero .pulse-beam,
.blog-hero .pulse-beam,
.contact-hero .pulse-beam,
.resources-hero .pulse-beam,
.glossary-hero .pulse-beam {
    position: absolute;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 255, 255, 0.8), transparent);
    animation: pulseBeam 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulseBeam {
    0% { opacity: 0; transform: translateY(-100%); }
    50% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(100%); }
}

/* Solidity code rain effect */
.solidity-code-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
}

/* Fade transition between sections */
.hero-section::after,
.about-hero::after,
.portfolio-hero::after,
.blog-hero::after,
.contact-hero::after,
.resources-hero::after,
.glossary-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.3));
    pointer-events: none;
    z-index: 5;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}