body {
    background-color: #FAFAFA;
    overflow-x: hidden;
}

.glass-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.mega-menu {
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.2s ease;
    pointer-events: none;
}

.group:hover .mega-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.mobile-mega-content {
    display: none;
    background-color: #f8fafc;
    border-radius: 0.5rem;
    margin-top: 0.5rem;
}

.mobile-mega-content.active {
    display: block;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
}

.swiper-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 1;
}

.swiper-slide > div {
    position: relative;
    z-index: 2;
}

.vds-table tr:nth-child(even) {
    background-color: #f8fafc;
}

.vds-table tr:hover {
    background-color: #f1f5f9;
}

.domain-box {
    border-top-width: 4px;
}

.hosting-card ul li i {
    min-width: 20px;
}