@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-300.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-400.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-900.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #0f0f0f;
    color: #ffffff;
    line-height: 1.6;
    overflow: hidden;
    height: 100vh;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.profile-image {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 2rem;
    border: 3px solid #333333;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

.name {
    font-size: clamp(3rem, 8vw, 4rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 2rem;
    letter-spacing: -0.04em;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: #888888;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-icons a:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.social-icons svg {
    width: 24px;
    height: 24px;
}

/* Modal Styles */
.modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
}

.modal[style*="block"] {
    display: flex !important;
}

.modal-content {
    background-color: #1a1a1a;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    max-width: 350px;
    width: 90%;
    border: 1px solid #333333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    max-height: 70vh;
    overflow-y: auto;
}

.modal-content h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.modal-content p {
    color: #888888;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.captcha-question {
    margin-bottom: 1.5rem;
}

.captcha-question span {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

.captcha-question input {
    width: 120px;
    padding: 0.75rem;
    background-color: #333333;
    border: 1px solid #555555;
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    text-align: center;
}

.captcha-question input:focus {
    outline: none;
    border-color: #ffffff;
}

.modal-content button {
    background-color: #ffffff;
    color: #000000;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 1rem;
}

.modal-content button:hover {
    background-color: #f0f0f0;
    transform: translateY(-1px);
}

.error-message {
    color: #ff6b6b;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    color: #888888;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s ease;
    line-height: 1;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close:hover {
    color: #ffffff;
}

@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }
    
    .social-icons {
        gap: 1rem;
    }
    
    .modal-content {
        padding: 1.5rem;
        margin: 1rem;
    }
}