* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 8vh 20px 20px;
    position: relative;
    overflow: hidden;
}

/* Background Image */
.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/robyn.jpg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(2px) brightness(0.9);
    z-index: -2;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    z-index: -1;
}

.page-container {
    max-width: 800px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}

/* Main Name */
.main-name {
    max-width: 700px;
    height: 90px;
    /* Display the square logo file in a 3:1 area and crop transparent top/bottom */
    aspect-ratio: 3 / 1;
    width: auto;
    object-fit: cover;
    object-position: center;
    display: block;
    margin-bottom: 20px;
}

/* Buttons Container */
.buttons-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.pill-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(0, 175, 240, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pill-button:hover {
    background: rgba(0, 155, 218, 0.9);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.pill-icon {
    font-size: 20px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-name {
    animation: fadeIn 0.8s ease 0.2s backwards;
}

.buttons-container {
    animation: fadeIn 0.8s ease 0.5s backwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .background-image {
        background-size: cover;
        background-position: center;
    }

    .main-name {
        max-width: 550px;
    }

    .text-link {
        font-size: 16px;
    }

    .link-separator {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .background-image {
        background-size: cover;
        background-position: center;
    }

    .main-name {
        max-width: 400px;
    }

    .text-link {
        font-size: 16px;
    }

    .link-separator {
        font-size: 16px;
    }
}
