﻿
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 2rem;
    border-radius: 1.5rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 25px rgb(255 255 255 / 30%);
    position: relative;
}

/*========= logo =========*/

.logo {
    position: relative;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.7);
    user-select: none;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg, transparent 40%, rgba(255, 255, 255, 0.5) 50%, transparent 60%);
    transform: rotate(25deg);
    animation: shine 4s infinite;
}

@keyframes shine {
    from {
        transform: rotate(25deg) translateX(-150%);
    }

    to {
        transform: rotate(25deg) translateX(150%);
    }
}

/*========== socials ============*/

.socials {
    display: flex;
    gap: 15px;
    margin-top: 1rem;
    direction: ltr;
}

.socials a {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    color: #0051ff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: 0.3s;
}

.socials a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.socials a:hover {
    background: #ffffffad;
    color: #000;
    transform: scale(1.2);
    box-shadow: 0 0 15px #ffffff;
}

/*========================*/

h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 102, 255, 0.6);
}

h2 {
    font-size: 1rem;
    font-weight: 400;
    color: #ddd;
}

.title {
    user-select: none;
}

.title_en {
    direction: ltr;
    font-size: 20px;
}

.tell_lbl {
    user-select: none;
    font-size: 18px;
}

.tell {
    user-select: text;
}

.box{
    border: 3px solid #a8c3ff73;
    border-radius: 12px;
    padding: 20px 10px 10px 10px;
    width: 100%;
    position: relative;
    margin-top: 18px;
}
.box_title{
    position: absolute;
    top: -15px;
    left: calc(50% - 100px);
    background: #33434E;
    width: 200px;
    border: 2px solid #a8c3ff73;
    border-radius: 5px;
    font-size: 0.9rem;
    user-select: none;
}

/*======================*/

@media only screen and (max-width: 600px) {
   
}