* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Anime Ace', 'Comic Sans MS', 'Arial', sans-serif; /* Thêm font Anime Ace nếu có */
}

html, body {
    background: url('https://images7.alphacoders.com/670/thumb-1920-670838.jpg') no-repeat center center fixed; /* Nền anime */
    background-size: cover;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    padding: 10px;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
    z-index: -1;
}

.container {
    text-align: center;
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    min-height: 100vh;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(255, 105, 180, 0.8); /* Hiệu ứng glow anime */
    backdrop-filter: blur(5px); /* Hiệu ứng kính mờ */
}

.profile {
    flex-shrink: 0;
}

.profile-pic {
    width: 15vw;
    max-width: 120px;
    min-width: 100px;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 50%;
    margin-bottom: 2vh;
    border: 4px solid #ff69b4;
    box-shadow: 0 0 15px rgba(255, 105, 180, 0.9);
    transition: transform 0.3s ease;
}

.profile-pic:hover {
    transform: scale(1.1); /* Hiệu ứng phóng to khi hover */
}

.profile h1 {
    font-size: clamp(20px, 4vw, 28px);
    font-weight: bold;
    margin-bottom: 1vh;
    color: #ff69b4;
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.8), 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.profile p {
    font-size: clamp(16px, 3vw, 20px);
    color: #fff;
    margin-bottom: 3vh;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.7);
}

.links {
    display: flex;
    flex-direction: column;
    gap: clamp(10px, 2vh, 20px);
    width: 100%;
}

.link-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff69b4, #ff1493); /* Gradient anime */
    border: 3px solid #fff;
    border-radius: 25px;
    padding: clamp(12px, 2vw, 18px);
    color: #fff;
    text-decoration: none;
    font-size: clamp(16px, 3vw, 20px);
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 105, 180, 0.7);
    cursor: url("https://mmo.yunagrp.com/cusor/Button.gif"), pointer;
    position: relative;
    overflow: hidden;
}

.link-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.5s ease;
}

.link-button:hover::before {
    left: 100%; /* Hiệu ứng ánh sáng chạy qua khi hover */
}

.link-button i {
    margin-right: 1rem;
    font-size: clamp(16px, 3vw, 20px);
    color: #fff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
}

.link-button .custom-icon {
    width: clamp(16px, 3vw, 20px);
    height: auto;
    margin-right: 1rem;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8));
}

.link-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 105, 180, 1);
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    cursor: url("https://mmo.yunagrp.com/cusor/Help.gif"), pointer;
}

/* Hiệu ứng hoa anh đào rơi */
@keyframes fall {
    0% { top: -10%; opacity: 1; transform: rotate(0deg); }
    100% { top: 110%; opacity: 0; transform: rotate(360deg); }
}

.sakura {
    position: absolute;
    width: 20px;
    height: 20px;
    background: url('https://i.imgur.com/8Qz8Q.png') no-repeat center center; /* Hoa anh đào */
    background-size: contain;
    animation: fall 5s linear infinite;
    z-index: -1;
}

.sakura:nth-child(1) { left: 10%; animation-duration: 6s; animation-delay: 0s; }
.sakura:nth-child(2) { left: 30%; animation-duration: 5s; animation-delay: 1s; }
.sakura:nth-child(3) { left: 60%; animation-duration: 7s; animation-delay: 2s; }
.sakura:nth-child(4) { left: 80%; animation-duration: 6s; animation-delay: 3s; }

/* Media Queries cho màn hình nhỏ */
@media (max-width: 600px) {
    body {
        align-items: flex-start;
        padding: 20px;
    }

    .container {
        min-height: auto;
        justify-content: flex-start;
        padding: 20px;
    }

    .profile-pic {
        width: 25vw;
        min-width: 100px;
    }

    .link-button {
        padding: clamp(14px, 2vw, 18px);
        font-size: clamp(18px, 3vw, 20px);
    }
}

@media (max-width: 400px) {
    .profile-pic {
        width: 30vw;
        min-width: 110px;
    }

    .links {
        gap: clamp(10px, 1.5vh, 18px);
    }

    .sakura {
        width: 15px;
        height: 15px;
    }
}
/* ================================
   YunsGRP CURSOR
================================ */

    html, body {
        cursor: url("https://mmo.yunagrp.com/cusor/Normal.gif"), auto;
    }

    /* Con trỏ cho liên kết */
    a:hover {
        cursor: url("https://mmo.yunagrp.com/cusor/Help.gif"), auto;
    }

    /* Con trỏ cho ô nhập liệu */
    input, span {
        cursor: url("https://mmo.yunagrp.com/cusor/Text.gif"), auto;
    }

    /* Con trỏ cho nút bấm */
    button, 
    .btn, 
    input[type="button"], 
    input[type="submit"] {
        cursor: url("https://mmo.yunagrp.com/cusor/Button.gif"), auto !important;
    }

    /* Con trỏ khi hover nút bấm */
    button:hover, 
    .btn:hover, 
    input[type="button"]:hover, 
    input[type="submit"]:hover {
        cursor: url("https://mmo.yunagrp.com/cusor/Button.gif"), auto !important;
    }
    