@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body,
html {
    height: 100%;
    width: 100%;
    overflow: hidden;
    background: transparent;
}

#bg-video {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 20px;
    z-index: 1;
    color: white;
}

.profile-section {
    text-align: center;
    animation: zoomIn 1.2s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-image-container {
    width: 110px;
    height: 110px;
    margin-bottom: 15px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#mero-name {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    letter-spacing: 2px;
    background: linear-gradient(45deg, #ff00cc, #3333ff, #00ccff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientShift 3s infinite alternate;
}

#mero-desc {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 15px;
    color: #f0f0f0;
    max-width: 600px;
    line-height: 1.5;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.sub-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.home-text {
    font-size: 0.9rem;
    font-weight: 600;
    background: linear-gradient(90deg, #00ffa3, #00d4ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.location-icon {
    color: #ff4757;
    font-size: 0.9rem;
}

.social-group {
    width: 100%;
}

.social-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
    width: 100%;
}

.channel-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    background: rgba(0, 136, 204, 0.15);
    /* Transparent Telegram-ish blue */
    border: 1px solid rgba(0, 136, 204, 0.4);
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 136, 204, 0.2);
}

.channel-btn:hover {
    background: rgba(0, 136, 204, 0.3);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 136, 204, 0.5);
}

.social-icons-row {
    display: flex;
    gap: 20px;
}

.social-link {
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    opacity: 1;
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

#views-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 15px;
    border-radius: 12px;
    backdrop-filter: blur(4px);
    transition: opacity 0.3s;
}

#rights-container {
    position: fixed;
    bottom: 10px;
    width: 100%;
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.7rem;
    pointer-events: none;
    font-family: monospace;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes gradientShift {
    0% {
        filter: hue-rotate(0deg);
    }

    100% {
        filter: hue-rotate(30deg);
    }
}

#click-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: opacity 0.5s ease-out;
}

#click-overlay p {
    color: white;
    font-size: 1.5rem;
    letter-spacing: 2px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.6;
    }
}

.visible {
    opacity: 1 !important;
}