/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

.container {
    max-width: 680px;
    width: 100%;
    margin: 0 auto;
}

/* Profile section */
.profile-section {
    text-align: center;
    margin-bottom: 40px;
}

.profile-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: block;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

    .profile-avatar:hover {
        transform: scale(1.05);
    }

.profile-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.profile-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.5;
    font-weight: 400;
}

a {
    text-decoration: none;
}
/* Links container */
.links-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

/* Link buttons */
.link-button {
    display: block;
    width: 100%;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    cursor: pointer;
    text-decoration: none;
}

    .link-button:hover {
        border: 1px solid white
    }



    .link-button:active {
        transform: translateY(0);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }

/* Footer */
.footer {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 40px;
}

    .footer a {
        color: rgba(255, 255, 255, 0.9);
        text-decoration: underline;
        transition: color 0.3s ease;
    }

        .footer a:hover {
            color: white;
        }

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

    .profile-name {
        font-size: 2rem;
    }

    .profile-description {
        font-size: 1rem;
    }

    .link-button {
        padding: 14px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .profile-name {
        font-size: 1.8rem;
    }

    .profile-description {
        font-size: 0.9rem;
    }

    .link-button {
        padding: 12px 18px;
        font-size: 0.95rem;
    }

    .profile-avatar {
        width: 80px;
        height: 80px;
    }
}

/* Animation for page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-section,
.links-container {
    animation: fadeInUp 0.6s ease-out;
}

.links-container {
    animation-delay: 0.2s;
}

/* Hover effects for individual links */
.link-button:nth-child(1) {
    animation-delay: 0.3s;
}

.link-button:nth-child(2) {
    animation-delay: 0.4s;
}

.link-button:nth-child(3) {
    animation-delay: 0.5s;
}

.link-button:nth-child(4) {
    animation-delay: 0.6s;
}

.link-button:nth-child(5) {
    animation-delay: 0.7s;
}

.status-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px
}

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #00C851
}

.status-text {
    font-size: 18px;
    color: #f0f0f0;
    font-weight: 00;
}


/* 18-years-old effect */
.sensitive-warning {
    background: #000;
    border: 1px solid white;
    color: #fff;
    border-radius: 20px;
    margin-top: 8px;
    text-align: center;
    font-family: inherit;
    opacity: 1;
    transition: padding 0.5s ease;
    padding: 0px 0px 0px 0px;
    position: relative;
}

    .sensitive-warning.visible {
        padding: 24px 16px 16px 16px;
    }

    .sensitive-warning h2 {
        font-size: 1.2rem;
        font-weight: bold;
        margin-bottom: 8px;
    }

    .sensitive-warning p {
        margin-bottom: 8px;
    }

    .sensitive-warning a {
        color: #fff;
        font-weight: bold;
        text-decoration: underline;
        cursor: pointer;
    }

/* 18-years-old close BTN styles */

.close-warning-btn {
    color: white;
    background-color: transparent;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 5px;
    right: 18px;
    border: none;
}

    .close-warning-btn:hover {
        color: red
    }
