
/* Block 1 */
.hero-banner {
        position: relative;
        height: 100vh;
        min-height: 600px;
        display: flex;
        align-items: center;
        overflow: hidden;
    }

    .hero-bg-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(26, 32, 44, 0.85) 0%, rgba(45, 55, 72, 0.75) 50%, rgba(102, 126, 234, 0.65) 100%);
        z-index: 2;
    }

    .hero-content {
        position: relative;
        z-index: 3;
        width: 100%;
        color: white;
    }

    .hero-title {
        font-size: 3.5rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
        background: linear-gradient(135deg, #ffd700 0%, #ff6b6b 50%, #4ecdc4 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: glow 2s ease-in-out infinite alternate;
    }

    @keyframes glow {
        from {
            filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.3));
        }
        to {
            filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
        }
    }

    .hero-description {
        font-size: 1.25rem;
        line-height: 1.7;
        margin-bottom: 2.5rem;
        opacity: 0.95;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    }

    .hero-btn {
        display: inline-block;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        text-decoration: none;
        padding: 1rem 2.5rem;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .hero-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(102, 126, 234, 0.5);
        color: white;
        background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    }

    .hero-btn:active {
        transform: translateY(-1px);
    }

    @media (max-width: 768px) {
        .hero-banner {
            height: 80vh;
            min-height: 500px;
        }

        .hero-title {
            font-size: 2.5rem;
        }

        .hero-description {
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }

        .hero-btn {
            padding: 0.9rem 2rem;
            font-size: 1rem;
        }
    }

    @media (max-width: 480px) {
        .hero-title {
            font-size: 2rem;
        }

        .hero-description {
            font-size: 1rem;
        }

        .hero-btn {
            padding: 0.8rem 1.5rem;
            font-size: 0.9rem;
        }
    }

/* Block 2 */
.neural-experience {
    padding: 100px 0;
    background: linear-gradient(165deg, #0a0a0a 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #533a71 100%);
    color: #ffffff;
    overflow: hidden;
}

.experience-badge {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: #000;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    animation: pulse-glow 3s infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 107, 107, 0.5); }
    50% { box-shadow: 0 0 40px rgba(78, 205, 196, 0.8); }
}

.experience-title {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #fff, #64ffda, #ff64ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
    line-height: 1.2;
}

.experience-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #b8c5d6;
    margin-bottom: 40px;
}

.experience-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(100, 255, 218, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    background: rgba(100, 255, 218, 0.1);
    border-color: rgba(100, 255, 218, 0.4);
}

.feature-icon {
    font-size: 2.5rem;
    background: linear-gradient(45deg, #64ffda, #ff64ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-right: 20px;
    min-width: 60px;
}

.feature-text h4 {
    color: #fff;
    margin-bottom: 8px;
    font-size: 1.3rem;
    font-weight: 600;
}

.feature-text p {
    color: #b8c5d6;
    margin: 0;
    font-size: 1rem;
}

.neural-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(118, 75, 162, 0.3);
}

.neural-btn:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(118, 75, 162, 0.5);
    background: linear-gradient(45deg, #764ba2, #667eea);
}

.neural-gallery {
    padding: 20px;
}

.neural-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 15px;
    height: 415px;
}

.neural-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
}

.neural-card.primary {
    grid-column: 1 / 3;
    grid-row: 1;
}

.neural-card:hover {
    transform: scale(1.05) rotateY(5deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.neural-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.neural-card:hover .neural-image {
    transform: scale(1.1);
}

.neural-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.neural-card:hover .neural-overlay {
    transform: translateY(0);
}

.neural-label {
    color: #64ffda;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .experience-title {
        font-size: 2.5rem;
    }
    
    .neural-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 180px);
        height: auto;
    }
    
    .neural-card.primary {
        grid-column: 1;
        grid-row: 1;
    }
}

@media (max-width: 768px) {
    .neural-experience {
        padding: 60px 0;
    }
    
    .experience-title {
        font-size: 2rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* Block 3 */
.metaverse-ecosystem {
    padding: 100px 0;
    background: linear-gradient(145deg, #0a0a23 0%, #1e1e3f 25%, #2d1b69 50%, #1e1e3f 75%, #0a0a23 100%);
    position: relative;
    overflow: hidden;
}

.metaverse-ecosystem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
    animation: cosmicFloat 20s ease-in-out infinite;
}

@keyframes cosmicFloat {
    0%, 100% { transform: translateX(0px) translateY(0px); }
    25% { transform: translateX(-20px) translateY(-10px); }
    50% { transform: translateX(20px) translateY(-20px); }
    75% { transform: translateX(-10px) translateY(10px); }
}

.ecosystem-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.ecosystem-title {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.ecosystem-subtitle {
    font-size: 1.3rem;
    color: #a0aec0;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.ecosystem-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.ecosystem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.ecosystem-card.genesis:hover {
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.ecosystem-card.nexus:hover {
    border-color: rgba(0, 255, 127, 0.5);
    box-shadow: 0 20px 40px rgba(0, 255, 127, 0.2);
}

.ecosystem-card.quantum:hover {
    border-color: rgba(138, 43, 226, 0.5);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.2);
}

.card-header {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.ecosystem-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ecosystem-card:hover .ecosystem-image {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.4), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon {
    font-size: 2.5rem;
    color: white;
    text-shadow: 0 0 20px currentColor;
}

.card-body {
    padding: 30px 25px;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.card-description {
    color: #a0aec0;
    line-height: 1.6;
    margin-bottom: 25px;
}

.card-stats {
    display: flex;
    justify-content: space-between;
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.metaverse-portal {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    overflow: hidden;
    margin-top: 60px;
}

.portal-content {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px;
}

.portal-visual {
    position: relative;
    flex-shrink: 0;
    width: 200px;
    height: 200px;
}

.portal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.portal-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.energy-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 3px solid;
    border-color: #667eea transparent #764ba2 transparent;
    border-radius: 50%;
    animation: portalSpin 3s linear infinite;
}

.quantum-particles::before,
.quantum-particles::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: #f093fb;
    border-radius: 50%;
    animation: particleFloat 4s ease-in-out infinite;
}

.quantum-particles::before {
    top: 20%;
    left: 80%;
    animation-delay: -1s;
}

.quantum-particles::after {
    bottom: 20%;
    right: 80%;
    animation-delay: -2s;
}

@keyframes portalSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes particleFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 1; }
    50% { transform: translate(-20px, -30px) scale(1.5); opacity: 0.5; }
}

.portal-info {
    flex: 1;
}

.portal-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.portal-description {
    color: #a0aec0;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.portal-requirements {
    margin-bottom: 30px;
}

.requirement-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #cbd5e0;
}

.req-icon {
    color: #667eea;
    margin-right: 12px;
    font-size: 1.1rem;
}

.portal-activation-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 35px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.portal-activation-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
    color: white;
}

@media (max-width: 768px) {
    .ecosystem-title {
        font-size: 2.5rem;
    }
    
    .ecosystem-subtitle {
        font-size: 1.1rem;
    }
    
    .portal-content {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 30px;
    }
    
    .portal-visual {
        width: 150px;
        height: 150px;
    }
}

/* Block 4 */
.quantum-booking {
    padding: 120px 0;
    background: radial-gradient(ellipse at center, #0f172a 0%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.quantum-booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="quantum-grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(79, 172, 254, 0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23quantum-grid)"/></svg>') repeat;
    opacity: 0.3;
}

.booking-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.quantum-emblem {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.quantum-emblem img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #4facfe;
    object-fit: cover;
}

.emblem-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: linear-gradient(45deg, #4facfe, #00f2fe, #ff0844, #ffb199);
    opacity: 0.6;
    animation: emblemRotate 4s linear infinite;
    z-index: -1;
}

@keyframes emblemRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.booking-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(79, 172, 254, 0.5);
}

.booking-subtitle {
    font-size: 1.2rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.quantum-form-container {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.8) 100%);
    border-radius: 24px;
    border: 1px solid rgba(79, 172, 254, 0.3);
    backdrop-filter: blur(20px);
    padding: 50px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.input-group {
    position: relative;
}

.quantum-label {
    display: block;
    color: #4facfe;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quantum-input {
    width: 100%;
    padding: 18px 24px;
    background: rgba(15, 23, 42, 0.8);
    border: 2px solid rgba(79, 172, 254, 0.3);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.quantum-input:focus {
    outline: none;
    border-color: #4facfe;
    box-shadow: 0 0 25px rgba(79, 172, 254, 0.4);
    transform: translateY(-2px);
}

.input-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    border-radius: 12px;
    overflow: hidden;
}

.data-stream {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(79, 172, 254, 0.3), transparent);
    transition: left 0.6s ease;
}

.quantum-input:focus + .input-effects .data-stream {
    left: 100%;
}

.submission-zone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.biometric-scanner {
    position: relative;
    width: 100px;
    height: 100px;
}

.biometric-scanner img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    border: 2px solid #4facfe;
    object-fit: cover;
}

.scanner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    overflow: hidden;
}

.scan-line {
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #4facfe, transparent);
    animation: scanAnimation 2s ease-in-out infinite;
}

@keyframes scanAnimation {
    0% { top: -2px; opacity: 1; }
    50% { top: 50%; opacity: 0.8; }
    100% { top: 102px; opacity: 0; }
}

.quantum-submit-btn {
    position: relative;
    padding: 20px 40px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border: none;
    border-radius: 16px;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(79, 172, 254, 0.4);
}

.quantum-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(79, 172, 254, 0.6);
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
}

.btn-text {
    position: relative;
    z-index: 2;
    margin-right: 10px;
}

.btn-icon {
    position: relative;
    z-index: 2;
    font-size: 1.4rem;
    animation: atomSpin 2s linear infinite;
}

@keyframes atomSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.btn-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: particleFloat 3s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 70%;
    animation-delay: 1s;
}

.particle:nth-child(3) {
    top: 80%;
    left: 30%;
    animation-delay: 2s;
}

@keyframes particleFloat {
    0%, 100% { opacity: 0; transform: translateY(0px); }
    50% { opacity: 1; transform: translateY(-10px); }
}

.security-protocols {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.protocol-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
}

.protocol-icon {
    color: #4facfe;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .booking-title {
        font-size: 2.2rem;
    }
    
    .quantum-form-container {
        padding: 30px 25px;
    }
    
    .submission-zone {
        flex-direction: column;
        gap: 20px;
    }
    
    .quantum-submit-btn {
        width: 100%;
    }
    
    .security-protocols {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (min-width: 768px) {
    .form-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
