/* ============================= */
/* RESET & BASIC STYLES */
/* ============================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: system-ui, -apple-system, BlinkMacSystemFont,
                 "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    scroll-behavior: smooth;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

body {
    display: flex;
    flex-direction: column;
    background-color: #c20443;
    transition: background-color 0.5s ease;
}

/* ============================= */
/* MAIN CONTENT */
/* ============================= */
.main-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
}

/* ============================= */
/* CONTAINER */
/* ============================= */
.welcome-container {
    background: #f3bbce;
    padding: 30px 30px;
    border-radius: 15px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
    max-width: 800px;
    width: 100%;
    animation: fadeInUp 1s ease;
    transition: outline 0.3s ease;
}

.welcome-container:focus-within {
    outline: 2px solid #2e2c5a;
    outline-offset: 4px;
}

/* ============================= */
/* HEADINGS */
/* ============================= */
h1 span {
    display: block;
}

.welcome {
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: clamp(3rem, 8vw, 5.8rem);
    color: #2e2c5a;
}

h1 span:not(.welcome) {
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: #c20443;
}

/* ============================= */
/* DATE & PARAGRAPH */
/* ============================= */
.current-date,
.current-time {
    font-size: clamp(1rem, 1.5vw, 1rem);
    color: #2e2c5a;
    margin-top: 10px;
}

.date-clock {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

p, #spoty-cloud-web-services, #spoty-cloud-products {
    font-size: clamp(16px, 4vw, 18px);
    margin-bottom: 30px;
    color: #2e2c5a;
    line-height: 1.5;
}

#spoty-cloud-web-services a {
    color: #2e2c5a;
    text-decoration: none;
}
#spoty-cloud-web-services a:hover {
    text-decoration: none;
}

#website-message {
    font-size: clamp(20px, 4vw, 35px);
    font-weight: 800;
    margin-bottom: 30px;
    color: #c20443;
    line-height: 1.5;
}

/* ============================= */
/* BUTTONS */
/* ============================= */
.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.btn {
    padding: 14px 18px;
    font-size: clamp(14px, 2vw, 16px);
    text-decoration: none;
    background: #2e2c5a;
    color: #fff;
    border-radius: 6px;
    display: inline-block;
    text-align: center;
    flex: 1 1 auto;
    min-width: 140px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover,
.btn:focus {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    outline: none;
}

/* ============================= */
/* FOOTER */
/* ============================= */
footer {
    text-align: center;
    padding: 15px 0;
    font-size: 15px;
    color: #f6aac3;
}

/* ============================= */
/* ANIMATIONS */
/* ============================= */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================= */
/* MEDIA QUERIES */
/* ============================= */
@media (max-width: 600px) {
    .welcome-container {
        padding: 30px 20px;
        border-radius: 15px;
    }
    .btn {
        width: 100%;
        padding: 12px;
    }
    .date-clock {
        flex-direction: column;
        gap: 5px;
    }
}

@media (min-width: 601px) and (max-width: 1024px) {
    .welcome-container {
        padding: 40px 30px;
        border-radius: 18px;
    }
    .btn {
        min-width: 160px;
        padding: 14px 16px;
    }
}