* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.content {
    text-align: center;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
    max-width: 600px;
    width: 100%;
    margin: auto;
}

.brand {
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out;
}

.title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.domain {
    font-size: 1.1rem;
    opacity: 0.8;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.loader {
    display: flex;
    justify-content: center;
    gap: 10px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: white;
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
}

.dot:nth-child(1) {
    animation-delay: -0.32s;
}

.dot:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}

/* Large screens and up */
@media (min-width: 1200px) {
    .content {
        padding: 80px 60px;
        max-width: 700px;
    }
    
    .title {
        font-size: 4rem;
    }
    
    .domain {
        font-size: 1.2rem;
    }
    
    .subtitle {
        font-size: 1.4rem;
    }
}

/* Medium screens (tablets in landscape) */
@media (max-width: 1199px) and (min-width: 992px) {
    .content {
        padding: 70px 50px;
        max-width: 650px;
    }
    
    .title {
        font-size: 3.8rem;
    }
}

/* Small screens (tablets in portrait) */
@media (max-width: 991px) and (min-width: 768px) {
    .content {
        padding: 50px 40px;
        max-width: 550px;
    }
    
    .title {
        font-size: 3.2rem;
    }
    
    .domain {
        font-size: 1.05rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
}

/* Mobile screens */
@media (max-width: 767px) {
    .container {
        padding: 15px;
        align-items: flex-start;
        padding-top: 10vh;
    }
    
    .content {
        padding: 40px 30px;
        border-radius: 15px;
        max-width: 100%;
    }
    
    .title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .domain {
        font-size: 1rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
        margin-bottom: 35px;
    }
    
    .brand {
        margin-bottom: 25px;
    }
}

/* Extra small screens (small phones) */
@media (max-width: 480px) {
    .container {
        padding: 10px;
        padding-top: 8vh;
    }
    
    .content {
        padding: 30px 20px;
        border-radius: 12px;
    }
    
    .title {
        font-size: 2rem;
        margin-bottom: 8px;
    }
    
    .domain {
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }
    
    .subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .brand {
        margin-bottom: 20px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

/* Very small screens (older phones) */
@media (max-width: 360px) {
    .content {
        padding: 25px 15px;
    }
    
    .title {
        font-size: 1.8rem;
    }
    
    .domain {
        font-size: 0.85rem;
    }
    
    .subtitle {
        font-size: 0.95rem;
    }
}