* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: url(kokoiback.gif);
    height: 100%;
    width: 100%;
    background-position: center;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    color: white;
}

.click-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 100;
    cursor: pointer;
    transition: opacity 0.8s ease-out;
}

.click-prompt {
    text-align: center;
    animation: pulse 2s infinite;
}

.click-prompt i {
    font-size: 50px;
    margin-bottom: 20px;
    color: #fdbb2d;
}

.click-prompt h1 {
    font-size: 36px;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #fdbb2d, #b21f1f);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.click-prompt p {
    font-size: 18px;
    max-width: 500px;
    line-height: 1.6;
    color: #ddd;
}

.content {
    display: none;
    text-align: center;
    padding: 30px;
    opacity: 0;
    transition: opacity 1s ease-in;
    width: 100%;
}

.profile-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.profile-card {
    background: rgba(0, 0, 0, 0.692);
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.692);
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.1);
    margin: 0 auto 20px auto;
    background: linear-gradient(45deg, #fdbb2d, #b21f1f);
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-img i {
    font-size: 50px;
    color: white;
}

.profile-name {
    font-size: 32px;
    margin-bottom: 15px;
    color: #00000099;
    min-height: 45px;
    font-weight: 700;
}

.quote-box {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    padding: 15px;
    margin: 0 auto 15px auto;
    width: 90%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.profile-quote {
    font-size: 16px;
    font-style: italic;
    color: #f6f6f7;
    min-height: 24px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.profile-standard {
    margin-right: 250px;
}

.visit-counter {
    font-size: 12px;
    color: rgb(255, 255, 255);
    font-style: normal;
}

.profile-title {
    font-size: 18px;
    color: #faf9f9;
    margin-bottom: 15px;
    font-weight: 300;
}

.profile-bio {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #000000;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.socials-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.social-card {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 15px;
    width: 110px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(160, 149, 149, 0.1);
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.8);
}

.social-icon {
    font-size: 24px;
    margin-bottom: 10px;
    color: #fcfbfb;
}

.social-name {
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 5px;
}

.social-username {
    font-size: 12px;
    color: #aaa;
}

.music-control {
    margin-top: 25px;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 20px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

.music-control:hover {
    background: rgba(0, 0, 0, 0.8);
}

.cursor {
    display: inline-block;
    width: 2px;
    height: 32px;
    background-color: #fdbb2d;
    margin-left: 4px;
    animation: blink 1s infinite;
    vertical-align: middle;
}

.quote-cursor {
    display: inline-block;
    width: 2px;
    height: 20px;
    background-color: #fdbb2d;
    margin-left: 2px;
    animation: blink 1s infinite;
    vertical-align: middle;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
}

.footer {
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

@media (max-width: 500px) {
    .profile-card {
        max-width: 90%;
        padding: 20px;
    }
    
    .profile-name {
        font-size: 28px;
    }
    
    .quote-box {
        width: 95%;
        padding: 12px;
    }
    
    .socials-container {
        gap: 10px;
    }
    
    .social-card {
        width: 90px;
        padding: 12px;
    }
}