.facebook {
    background: #3b5998;
}

.facebook:hover {
    background: #2d4373;
}

.twitter {
    background: #1da1f2;
}

.twitter:hover {
    background: #0d8bd9;
}

.linkedin {
    background: #0077b5;
}

.linkedin:hover {
    background: #005885;
}

.pinterest {
    background: #bd081c;
}

.pinterest:hover {
    background: #8c0615;
}

.whatsapp {
    background: #25d366;
}

.whatsapp:hover {
    background: #1da851;
}

.telegram {
    background: #0088cc;
}

.telegram:hover {
    background: #006699;
}

.reddit {
    background: #ff4500;
}

.reddit:hover {
    background: #cc3700;
}

.tumblr {
    background: #35465c;
}

.tumblr:hover {
    background: #2a3649;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    padding: 15px 20px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.share-btn i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.share-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.comment-other-span{
    font-size: 16px;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 221px;
    padding-right: 10px;
}


.overlay-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 1001;
}

.enlarged-image{
    display: block;
    max-width: 100%;
    max-height: 80vh;
    margin: 0 auto;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.overlay{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s;
}

.overlay.active {
    opacity: 1;
    display:block;
}


.right-lines-compat{
    margin: 10px 0px;
    color: white;
    font-size: 14px;
}

.no-can-input{
    user-select: none;
    outline: none;
    cursor: pointer;
}

.no-can-input-arrow{
    user-select: none;
    outline: none;
    cursor: default;
}

.more-pl-click{
    font-size: 16px;
    color: #F4F4F4;
    margin-right: 20px;

}

.little-copy-div{
    margin-right: 10px;
    margin-bottom: 10px;
}

.expand-btn {
    color: #3498db;
    padding-left: 5px;
}

.expand-btn:hover {
    color: #2980b9;
}

.big-content-container {
    margin-top: 10px;
    font-size: 16px;
    margin-bottom: 10px
}

.text-content {
    line-height: 1.6;
    color: white;
    overflow: hidden;
    transition: all 0.3s ease;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.share-modal {
    background: white;
    border-radius: 15px;
    padding: 30px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.modal-overlay.active .share-modal {
    transform: translateY(0);
}

.share-modal h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.share-options {
    display: flex;
    justify-content: space-around;
    margin: 25px 0;
}

.share-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s ease;
    padding: 10px;
    border-radius: 10px;
}

.share-option:hover {
    transform: scale(1.1);
    background: rgba(0, 0, 0, 0.05);
}

.share-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1.8rem;
    color: white;
}

/* Toast样式 - 关键部分 */
.toast-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999; /* 确保在最上层 */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.toast-icon {
    margin-right: 12px;
    font-size: 20px;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
}

.toast-message {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.5);
    width: 100%;
    transform-origin: left;
}
/* 顶部居中动画效果 */
@keyframes topSlideIn {
    from {
        transform: translateY(-100%) translateX(-50%);
        opacity: 0;
    }
    to {
        transform: translateY(0) translateX(-50%);
        opacity: 1;
    }
}

@keyframes topFloat {
    0%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    50% {
        transform: translateY(-3px) translateX(-50%);
    }
}

@keyframes topSlideOut {
    from {
        transform: translateY(0) translateX(-50%);
        opacity: 1;
    }
    to {
        transform: translateY(-100%) translateX(-50%);
        opacity: 0;
    }
}

.toast-info {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.95) 0%, rgba(41, 128, 185, 0.95) 100%);
    color: white;
    border-left: 5px solid #2980b9;
}

.toast.hide {
    animation: topSlideOut 0.5s ease forwards;
}

.toast {
    min-width: 300px;
    max-width: 450px;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    animation: topSlideIn 0.5s ease forwards, topFloat 3s ease-in-out infinite 0.5s;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.toast-success {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.95) 0%, rgba(39, 174, 96, 0.95) 100%);
    color: white;
    border-left: 5px solid #27ae60;
}

.toast-warning {
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.95) 0%, rgba(230, 126, 34, 0.95) 100%);
    color: white;
    border-left: 5px solid #e67e22;
}

.toast-error {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.95) 0%, rgba(192, 57, 43, 0.95) 100%);
    color: white;
    border-left: 5px solid #c0392b;
}

.toast-info {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.95) 0%, rgba(41, 128, 185, 0.95) 100%);
    color: white;
    border-left: 5px solid #2980b9;
}

.star_little_li{
    font-size: 1.2rem;
    color: #444;
    position: relative;
}

.star_little_li.filled {
    color: #FF2D78;
    text-shadow: 0 0 8px rgba(255, 193, 7, 0.5);
}

.star_little_li.partial {
    background: linear-gradient(90deg, #FF2D78 0%, #FF2D78 var(--fill-percent), #444 var(--fill-percent), #444 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/*界面中显示固定的星星*/
.star_li {
    font-size: 1.6rem;
    color: #444;
    position: relative;
}

.star_li.filled {
    color: #FF2D78;
    text-shadow: 0 0 8px rgba(255, 193, 7, 0.5);
}

.star_li.partial {
    background: linear-gradient(90deg, #FF2D78 0%, #FF2D78 var(--fill-percent), #444 var(--fill-percent), #444 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rating-little-text {
    font-size: 1rem;
    color: #FF2D78;
    font-weight: bold;
    padding: 5px 12px;
    border-radius: 20px;
}

.rating-text {
    font-size: 1.4rem;
    color: #FF2D78;
    font-weight: bold;
    padding: 5px 12px;
    border-radius: 20px;
}

.body-title-data{
    margin-top: 20px;
    margin-left: 20px;
}

.body-bottom{
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-end;
    margin-right: 20px;
    padding-bottom: 10px;
}
.main-body-bottom{
    border-radius: 8px;
    margin-top: 20px;
    background: #23252B;
    margin-bottom: 20px;
}

.body-img{
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    aspect-ratio: 1;
    background-color: #f0f0f0;
    width: 400px;
    height: 400px;
}

.body-img:hover  {
    transform: scale(1.05);
}

.body-img-data{
    margin-top: 20px;
    margin-left: 20px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding-bottom: 20px;
}

.body-des-data{
    font-size: 14px;
    color:white;;
    margin-left: 20px;
    margin-top: 20px;
}


.body-head{
    display: flex;
    margin-left: 20px;
    padding-top: 20px;
    font-size: 16px;
    color: white;
    align-items: center;
    justify-content: space-between;
}


.main-body{
    background: #23252B;
    margin-top: 10px;
    border-radius: 8px;
}

.main{
    display: flex;
}

.main-left {
    width: 868px;
}

.game-head{
    width:100%;
    height: 96px;
    border-radius: 8px;
    background: #23252B;

    display: flex;
    align-items: center;
}

.game-right{
    margin-left: 20px;
}


.main-right {
    width: 316px;
    margin-left: 20px;
    position: sticky;
    top: 0px;      /* 距离顶部80px时开始粘性 */
    bottom: 60px;
    align-self: flex-start;
    margin-bottom: 60px;
}

.right-pl-root{
    width: 100%;
    border-radius: 12px;
    background: #23252B;
    margin-top: 10px;
}

.right-zoom-root{
    width: 100%;
    border-radius: 12px;
    background: #23252B;
    margin-top: 10px;
}


.right-head{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 16px;
    color: white;
    user-select: none;
    outline: none;
    cursor: pointer;
}

/* 预览区域样式 */
.image-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
}


.image-preview-copy {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
}

.image-item {
    position: relative;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    transition: all 0.3s;
    cursor: move;
}
.image-item.sortable-ghost {
    opacity: 0.4;
    background: #f0f0f0;
}
.image-item.sortable-chosen {
    border: 2px dashed #409EFF;
}
.image-preview {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
}
.image-info {
    padding: 8px;
    font-size: 12px;
    color: #666;
}
.image-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}
.image-size {
    color: #999;
}
.image-actions {
    position: absolute;
    top: 5px;
    right: 5px;
    display: flex;
    gap: 5px;
}
.delete-btn, .sort-btn {
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 12px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.delete-btn {
    background: rgba(255,0,0,0.7);
    color: white;
}
.delete-btn:hover {
    background: rgba(255,0,0,0.9);
}
.sort-btn {
    background: rgba(255,193,7,0.7);
    color: white;
    cursor: move;
}
.sort-btn:hover {
    background: rgba(255,193,7,0.9);
}

.suggestion-icon{
    border-radius: 50%;
    object-fit: cover;
    width: 24px;
    margin-right: 10px;
}

.topic-item-click{
    font-size: 14px;
    text-align: left;
    padding: 8px 20px;
    cursor: pointer;
    border-bottom: 1px solid #333333;
    transition: background 0.2s;
    color: #23BDFF;
}

.ht-item{
    font-size: 14px;
    text-align: left;
    padding: 8px 12px;
    cursor: pointer;
    border-bottom: 1px solid #333333;
    transition: background 0.2s;
    color: #23BDFF;
}

.important-call-text {
    color: #23BDFF;
    font-weight: bold;
    user-select: none;
    outline: none;
    cursor: pointer;
}

.important-text {
    color: #23BDFF;
    font-weight: bold;
    user-select: none;
    outline: none;
    cursor: pointer;
}

.important-link-text {
    color: #23BDFF;
    font-weight: bold;
    user-select: none;
    outline: none;
    cursor: pointer;
}

.important-ht-text {
    color: #23BDFF;
    font-weight: bold;
    user-select: none;
    outline: none;
    cursor: pointer;
}

.ht-item:hover {
    color: #FF2D78;
}

.suggestion-item {
    font-size: 14px;
    text-align: left;
    padding: 8px 12px;
    cursor: pointer;
    border-bottom: 1px solid #333333;
    transition: background 0.2s;
    color: white;
}

.suggestion-item:first-child {
    border-top: 1px solid #333333;
}

.suggestion-item:hover {
    color: #FF2D78;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.link-list{
    max-height: 200px;
    overflow-y: auto;
}


/*输入的方式和信息  结束*/

.qs-head-right-item{
    font-size: 16px;
    color: #23BDFF;
    user-select: none;
    outline: none;
    cursor: pointer;
}


.item_line{
    margin-top: 20px;
    width: 100%;
    border: 1px solid rgba(56, 59, 69, 0.7);
}

.platform_cont{
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-top: 16px;
}

.platform_cont img{
    width: 24px;
    height: 24px;
    background: #383B45;
    border-radius: 50%;
}

.zoom-content{
    padding: 20px;
}

.medal-icon{
    width: 40px;
    height: 40px;
}

.cai-content-qs{
    margin: 0 20px;
}
.horizontal-line {
    height: 1px;
    border-bottom: 1px solid #333333; /* 线的样式 */
    margin: 10px 0px;
}

.qs-horizontal-line {
    height: 1px;
    border-bottom: 1px solid #333333; /* 线的样式 */
    margin: 10px 0px;
}

.horizontal-line:last-child {
    border-bottom: none;
}


/* 兼容旧浏览器的图片比例保持 */
.legacy-img-container {
    position: relative;
    overflow: hidden;
}

.legacy-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
}

.qs-img{
    object-fit: contain;
    margin-right: 10px;
    max-width: 120px;
    height: auto;
}

/* 特性检测 */
@supports (object-fit: cover) {
    .legacy-img-container img {
        object-fit: cover;
    }

    .qs-img-container img {
        object-fit: cover;
    }
}

.qs-img-container{
    position: relative;
    overflow: hidden;
}

.item-head-qs{
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    outline: none;
    cursor: pointer;
}

.game-tj-item{
    margin-bottom: 10px;
}

.qs-head{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cai-content-game{
    margin: 0 20px;
}


.qs-head-left{
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.qs-head-right{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    margin-left: 10px;
}


.gametitle{
    color: #FF2D78;
    user-select: none;
    outline: none;
    cursor: pointer;
}

.pl-list-item{
    padding-bottom: 5px;
}

.iconOuter{
    width: 94%;
    margin: 10px 20px;
    overflow: hidden;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.3);
    padding-left: 10px;
}


.p-con-title {
    height: 30px;
    color: white;
    line-height: 30px;
    font-size: 16px;
    display: flex;
    flex-direction: row;
    justify-content:space-between;
    align-items:center;
    text-align: center;
    margin: 0 20px;
    padding-top: 20px;
}

.dropdown-area {
    display: flex;
    justify-content: center;
    position: relative;
}

.dropdown-trigger {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.dropdown-trigger:hover {
    transform: translateY(-3px);
}

.dropdown-trigger:active {
    transform: translateY(1px);
}

/* 细线箭头样式 */
.item-arrow {
    position: relative;
    width: 10px;
    height: 10px;
    transition: transform 0.3s ease;
}

.item-arrow::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-right: 2px solid #bdc3c7;
    border-bottom: 2px solid #bdc3c7;
    top: 0;
    left: 0;
    transform: rotate(-45deg);
    transition: all 0.3s ease;
}

.dropdown-arrow {
    width: 12px;
    height: 12px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.dropdown-trigger.active .dropdown-arrow {
    transform: rotate(-135deg);
}

.dropdown-menu {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 150px;
    background: #383B45;
    border-radius: 12px;
    border: 1px solid #383B45;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(20px);
}

.dropdown-item {
    padding: 0 25px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dropdown-item:hover {
    color: #FF2D78;
}

.dropdown-item.selected {
    color: #FF2D78;
}

/*输入的方式和信息  开始*/
.hidden-file-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    overflow: hidden;
}

.main-body-none{
    height: 30px;
    line-height: 30px;
    text-align: center;
    margin-bottom: 10px;
    font-size: 14px;
}

.bottom-title{
    font-size: 16px;
    margin-left: 20px;
    color: white;
    padding-top: 10px;
}

.reply-input-wrapper {
    display: flex;
    align-items: flex-end;
    border-radius: 6px;
    overflow: hidden;
    transition: border-color 0.2s;
    padding-left: 15px;
    background-color: #383B45;
}

.reply-input-wrapper:focus-within {
    border-color: #4a6cf7;
}

.input-container {
    margin: 20px;
    padding-bottom: 20px;
}

.reply-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 16px;
    line-height: 1.5;
    resize: none;
    max-height: 80px;
    overflow-y: auto;
    min-height: 24px;
    font-family: inherit;
    color: white;
    padding: 10px 0px;
    height: 80px;
}

.reply-input:empty::before {
    content: attr(data-placeholder); /* 读取 data-placeholder 属性值 */
    color: #999; /* 占位符灰色 */
    pointer-events: none; /* 点击时穿透到 div，不影响输入 */
}

.reply-input-pl {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 16px;
    line-height: 1.5;
    resize: none;
    max-height: 80px;
    overflow-y: auto;
    min-height: 24px;
    font-family: inherit;
    color: white;
    padding: 10px 0px;
}

.reply-input-pl:empty::before {
    content: attr(data-placeholder); /* 读取 data-placeholder 属性值 */
    color: #999; /* 占位符灰色 */
    pointer-events: none; /* 点击时穿透到 div，不影响输入 */
}


.action-buttons {
    position: absolute;
    right: 360px;
    display: flex;
    align-items: flex-end;
    gap: 5px;
    margin-bottom: 5px;
    margin-right: 5px;
}

.action-buttons-pl {
    position: absolute;
    right: 370px;
    display: flex;
    align-items: flex-end;
    gap: 5px;
    margin-bottom: 5px;
    margin-right: 5px;
}

.action-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    font-size: 18px;
    padding: 5px;
    border-radius: 4px;
    transition: all 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.panel {
    margin: 10px;
    background: #383B45;
    position: absolute;
    left: 0;
    width: 97%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 10;
    display: none;
    border: 1px solid #666;
}

.panel.active {
    display: block;
    animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.panel-header {
    display: flex;
    margin-bottom: 10px;
}

.panel-tab {
    padding: 8px 8px;
    background: none;
    border: none;
    font-size: 14px;
    color: #666;
    user-select: none;
    outline: none;
    cursor: pointer;
}

.submit-btn {
    background-color: #FF2D78;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 6px 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    font-size: 13px;
}

.submit-btn:hover {
    background-color: #FF2D78;
}

.submit-btn:disabled {
    background-color: #FF2D78;
    cursor: not-allowed;
    opacity: 0.5;
}

.panel-item.active {
    background: #FF2D78;
}

.panel-item{
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    width: 60px;
    height: 30px
}

/* 表情面板样式 */
.emoji-panel {
    padding: 10px;
    margin-top: 10px;
    max-height: 150px;
    overflow-y: auto;
}

.image-panel{
    padding: 10px;
    margin-top: 10px;
    max-height: 150px;
    margin-bottom: 20px;
}

.emoji-tabs {
    margin-bottom: 10px;
    user-select: none;
    outline: none;
    cursor: pointer;
}

.emoji-tab {
    padding: 5px 10px;
    margin-right: 5px;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    border-radius: 3px;
}

.emoji-tab.active {
    background: #FF2D78;
    color: white;
    border-color: #FF2D78;
}

.emoji-category {
    display: none;
}

.emoji-category.active {
    display: block;
}

.emoji-item {
    display: inline-block;
    padding: 5px;
    margin: 2px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 3px;
    transition: background-color 0.2s;
}

.emoji-item:hover {
    background-color: #e9ecef;
    transform: scale(1.1);
}

.loading-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

/* 三个脉动圆点 */
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #4285f4;
    animation: pulse 1.4s ease-in-out infinite both;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes pulse {
    0% { transform: scale(0); }
    50% { transform: scale(1); }
    100% { transform: scale(0); }
}
