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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: #1a1a1a;
}

.container {
    max-width: 400px;
    width: 100%;
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 32px 24px;
}

/* Logo */
.logo-container {
    margin-bottom: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    max-width: 240px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* Tagline */
.tagline {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 auto 16px auto;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 100%;
}

/* Description */
.description {
    font-size: 15px;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 32px;
    padding: 0 12px;
    font-weight: 400;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

/* Links Container */
.links-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

/* Link Buttons */
.link-button {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 16px 20px;
    text-decoration: none;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.link-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.link-text {
    font-size: 16px;
    font-weight: 500;
    flex: 1;
    text-align: left;
}


.link-menu {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1;
    margin-left: 12px;
    font-weight: 300;
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 8px;
}

.social-icon {
    width: 32px;
    height: 32px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, opacity 0.2s ease;
    text-decoration: none;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.social-icon:hover {
    transform: scale(1.1);
    opacity: 0.7;
}

.social-icon svg {
    width: 100%;
    height: 100%;
}

/* Responsive Design */
@media (max-width: 480px) {
    body {
        padding: 16px;
    }

    .container {
        max-width: 100%;
        padding: 24px 20px;
    }

    .logo {
        max-width: 240px;
    }

    .logo-container {
        margin-bottom: -40px;
    }

    .tagline {
        font-size: 16px;
    }

    .description {
        font-size: 14px;
        padding: 0 8px;
    }

    .link-button {
        padding: 14px 16px;
    }

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

/* Smooth animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container > * {
    animation: fadeIn 0.5s ease-out;
}

.container > *:nth-child(1) { animation-delay: 0.1s; }
.container > *:nth-child(2) { animation-delay: 0.2s; }
.container > *:nth-child(3) { animation-delay: 0.3s; }
.container > *:nth-child(4) { animation-delay: 0.4s; }
.container > *:nth-child(5) { animation-delay: 0.5s; }

