html, body {
    height: 100%;
    margin: 0;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}
.splash-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: linear-gradient(135deg, #ef6bff, #2331f5);
    animation: gradientShift 15s ease infinite;
}
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.stonehosting {
    font-size: 7vw;
    font-weight: bold;
    color: black;
    letter-spacing: -0.05em;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    overflow: hidden;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
    color: #fff;
}
.stonehosting .dot {
    color: black;
    transition: transform 0.5s ease, color 0.5s ease;
}
.stonehosting .dot.pop {
    animation: bounceToRed 1s ease forwards;
}
@keyframes bounceToRed {
    0% { transform: scale(1); color: black; }
    30% { transform: scale(1.5); color: #e74c3c; }
    50% { transform: scale(1); color: #e74c3c; }
    70% { transform: scale(1.2); color: #e74c3c; }
    100% { transform: scale(1); color: #e74c3c; }
}