body {
    font-family: 'Helvetica', 'Arial', sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.form-container {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.request-stats {
    text-align: center;
    margin-bottom: 20px;
}

.search-label {
    font-size: 1.2em;
    color: #010101; 
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.count {
    font-size: 1.5em;
    font-weight: bold;
    color: #69C9D0;
    padding: 5px 10px;
    background: #FFFFFF; 
    border-radius: 5px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
}

.count.update {
    animation: countUpdate 0.5s ease-in-out;
}

@keyframes countUpdate {
    0% { transform: scale(1); color: #69C9D0; }
    50% { transform: scale(1.2); color: #EE1D52; }
    100% { transform: scale(1); color: #69C9D0; }
}

.search-box {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 730px;
    transition: all 0.3s ease;
}

.search-box:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.search-box input[type="text"] {
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    flex: 1;
    outline: none;
    background: transparent;
}

.search-box input[type="submit"] {
    padding: 12px 20px;
    font-size: 16px;
    background: linear-gradient(45deg, #ff0050, #00f2ea);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-box input[type="submit"]:hover {
    background: linear-gradient(45deg, #e60045, #00d1c9);
}

.search-box .search-icon {
    padding: 0 15px;
    color: #999;
}

.profile-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.profile-header img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-right: 20px;
    cursor: pointer;
}

.profile-info h2 {
    margin: 0;
    font-size: 24px;
    display: flex;
    align-items: center;
}

.profile-info h2 a {
    color: #000;
    text-decoration: none;
}

.profile-info h2 a:hover {
    text-decoration: underline;
}

.verified-icon {
    margin-left: 5px;
}

.profile-stats {
    margin: 10px 0;
    font-size: 16px;
}

.profile-stats span {
    margin-right: 20px;
    font-weight: bold;
}

.profile-bio {
    font-size: 14px;
    color: #333;
}

.profile-bio a {
    color: #ff0050;
    text-decoration: none;
}

.profile-bio a:hover {
    text-decoration: underline;
}

.tabs {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-top: 20px;
    flex-wrap: wrap;
}

.tab {
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    color: #666;
    border-bottom: 2px solid transparent;
    flex: 1;
    text-align: center;
}

.tab.active {
    color: #000;
    border-bottom: 2px solid #ff0050;
    font-weight: bold;
}

.tab-content {
    display: none;
    padding: 20px 0;
}

.tab-content.active {
    display: block;
}

.info-item {
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.info-item:last-child {
    border-bottom: none;
}

.info-item strong {
    display: inline-block;
    width: 300px;
    color: #333;
}

.profile-tab-item {
    padding: 5px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.profile-tab-item strong {
    display: inline-block;
    width: 300px;
    color: #333;
}

.info-icon {
    position: relative;
    display: inline-block;
    margin-left: 5px;
    cursor: pointer;
    color: #ff0050;
    font-weight: bold;
}

.info-icon:hover .tooltip {
    visibility: visible;
    opacity: 1;
}

.tooltip {
    visibility: hidden;
    width: 250px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 12px;
}

.tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

.view-image-btn {
    display: inline-block;
    padding: 6px 12px;
    background: linear-gradient(45deg, #ff0050, #00f2ea);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.view-image-btn:hover {
    background: linear-gradient(45deg, #e60045, #00d1c9);
}

.view-btn {
    display: inline-block;
    padding: 6px 12px;
    background: linear-gradient(45deg, #ff0050, #00f2ea);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    margin-left: 10px;
    transition: background 0.3s ease;
}

.view-btn:hover {
    background: linear-gradient(45deg, #e60045, #00d1c9);
}

.social-link {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    background: #f0f0f0;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    margin-right: 10px;
    transition: background 0.3s ease;
}

.social-link:hover {
    background: #e0e0e0;
}

.social-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.lightbox.active {
    display: flex;
}

@media (max-width: 600px) {
    body {
        padding: 10px;
        background-color: #fff; 
    }

    .container {
        padding: 10px;
        box-shadow: none; 
        border-radius: 0;
    }

    .form-container {
        margin: 15px 0;
    }

    .search-box {
        max-width: 100%;
        border-radius: 20px;
    }

    .search-box input[type="text"] {
        padding: 10px;
        font-size: 14px;
    }

    .search-box input[type="submit"] {
        padding: 10px;
        font-size: 14px;
    }

    .profile-header {
        flex-direction: column;
        text-align: center;
        margin-bottom: 15px;
    }

    .profile-header img {
        width: 80px;
        height: 80px;
        margin: 0 auto 10px;
    }

    .profile-info h2 {
        font-size: 20px;
        justify-content: center;
    }

    .profile-stats {
        font-size: 14px;
        display: flex;
        justify-content: center;
        gap: 15px;
    }

    .profile-stats span {
        margin-right: 0;
    }

    .profile-bio {
        font-size: 12px;
        text-align: center;
    }

    .tabs {
        flex-direction: row;
        margin-top: 15px;
        border-bottom: 1px solid #ddd;
    }

    .tab {
        padding: 8px 10px;
        font-size: 14px;
        position: relative;
    }

    .tab.active {
        border-bottom: 2px solid #000;
        color: #000;
    }

    .tab-content {
        padding: 10px 0;
    }

    .info-item {
        padding: 8px 0;
        font-size: 12px;
        flex-direction: column;
        align-items: flex-start;
    }

    .info-item strong {
        width: 100%;
        margin-bottom: 5px;
    }

    .profile-tab-item {
        padding: 5px 0;
        font-size: 12px;
    }

    .profile-tab-item strong {
        width: 100%;
    }

    .tooltip {
        width: 150px;
        font-size: 10px;
    }

    .view-image-btn {
        padding: 5px 10px;
        font-size: 12px;
    }

    .view-btn {
        padding: 5px 10px;
        font-size: 12px;
    }

    .social-link {
        padding: 6px 10px;
        font-size: 12px;
    }

    .social-icon {
        width: 16px;
        height: 16px;
    }
}

@media (min-width: 601px) and (max-width: 900px) {
    .profile-header img {
        width: 90px;
        height: 90px;
    }

    .profile-info h2 {
        font-size: 22px;
    }

    .profile-stats {
        font-size: 15px;
    }

    .profile-bio {
        font-size: 13px;
    }

    .tab {
        padding: 10px 15px;
        font-size: 15px;
    }

    .info-item {
        font-size: 13px;
    }

    .info-item strong {
        width: 250px;
    }

    .profile-tab-item strong {
        width: 250px;
    }
}
