body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

.metaview-container {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1rem;
    padding-bottom: 40px;
    background: linear-gradient(45deg, #000, #000);
    animation: gradientShift 10s ease infinite;
}

#particle-canvas {
    filter: blur(25px);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

h1 {
    font-size: 5rem;
    font-weight: 900;
    color: #00d4ff;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px #00d4ff, 0 0 20px #00d4ff, 0 0 30px #00b3d8;
    animation: glow 2s ease-in-out infinite alternate;
}

.description {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.sub-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #fff;
}

.features {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1rem;
}

.feature {
    background: rgba(0, 51, 153, 0.1);
    border: 2px solid rgba(0, 51, 153, 0.1);
    backdrop-filter: blur(2px);
    padding: 1.2rem 1.8rem;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0.7rem;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: default;
    color: #fff;
    width:20%;
}

.feature:hover {
    border-color: rgba(1, 75, 223, 0.5);
    background: rgba(0, 51, 153, 0.51);
    transform: translateY(-2px);
    box-shadow: 0 0 55px rgba(0, 80, 240, 0.5);
}
.feature i:hover {
    color: rgb(255, 255, 255);
   
}

.feature i {
    font-size: 2rem;
    color: rgba(0, 80, 240, 1);
    
}

/* Desktop background */
@media (min-width: 769px) {
    .metaview-container {
        background: linear-gradient(45deg, #000, #000), url('../image/metaview.jpg') no-repeat center center/cover;
        animation: gradientShift 10s ease infinite;
    }
    .mobile-image {
        display: none !important;
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .metaview-container {
        background: #000;
        min-height: auto;
        padding: 1rem;
    }
    .mobile-image {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    .mobile-image img {
        width: 100%;
        height: auto;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
    h1 {
        font-size: 2.8rem;
    }
    .description {
        font-size: 1rem;
    }
    .sub-description {
        font-size: 0.95rem;
    }
    .features {
        gap: 1rem;
    }
    .feature {
        width: 45%;
        padding: 0.9rem 1.4rem;
        font-size: 0.9rem;
    }
    .feature i {
        font-size: 1.1rem;
    }
    .banner-top-img{
        display: none;
    }
    .banner-top-img-mobile{
        display: flex !important;
    }
}
.logo-metaview{
    width: 350px;
    max-width: 80%;
}
.headline-metaview{
    width: 650px;
    max-width: 90%;
}

.vr-metaview{
    margin-top: -100px;
    width: 750px;
    max-width: 90%;
}

.banner-top-img{
    width: 750px;
    max-width: 90%;
    border-radius: 20px;
    margin-bottom: 20px;
}
.banner-top-img-mobile{
    width: 750px;
    max-width: 100%;
    border-radius: 20px;
    margin-bottom: 20px;
    display: none;
}

/* Animations */
@keyframes gradientShift {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}

@keyframes glow {
    from { text-shadow: 0 0 10px #FFB3CC, 0 0 20px #FFB3CC, 0 0 30px #FFB3CC; }
    to { text-shadow: 0 0 20px #FFB3CC, 0 0 30px #FFB3CC, 0 0 40px #FFB3CC; }
}