/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body {
    font-family: 'Quicksand', sans-serif;
    background: linear-gradient(135deg, #1e1e2f 0%, #2a2a4a 50%, #ff6f61 100%);
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Hiệu ứng nền động */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 111, 97, 0.2) 0%, transparent 70%);
    animation: pulse-bg 10s infinite ease-in-out;
    z-index: -1;
}

/* Overlay */
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: opacity 0.5s ease;
}

#play-button {
    padding: 20px 40px;
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(45deg, #ff6f61, #ff3b2f, #ffcc00);
    background-size: 200% 200%;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(255, 111, 97, 0.6);
    transition: all 0.3s ease;
    animation: gradient-shift 4s infinite ease;
}

#play-button:hover {
    transform: scale(1.1) rotate(2deg);
    box-shadow: 0 15px 35px rgba(255, 111, 97, 0.8);
}

/* Container */
.container {
    max-width: 900px;
    margin: 30px auto;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fade-in 1s ease;
}

/* Navigation */
.nav-bar {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    background: linear-gradient(45deg, rgba(255, 111, 97, 0.2), rgba(255, 204, 0, 0.2));
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    padding: 10px 20px;
    font-family: 'Pattaya', sans-serif;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link.active {
    background: linear-gradient(45deg, #ff6f61, #ff3b2f);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(255, 111, 97, 0.5);
}

.nav-link:hover {
    color: #ffcc00;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #ffcc00;
    bottom: 0;
    left: 50%;
    transition: all 0.3s ease;
}

.nav-link:hover::after {
    width: 50%;
    left: 25%;
}

/* Profile */
.profile {
    text-align: center;
    margin: 30px 0;
    animation: slide-up 0.8s ease;
}

.avatar {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 5px solid #ff6f61;
    box-shadow: 0 0 25px rgba(255, 111, 97, 0.7), 0 0 50px rgba(255, 111, 97, 0.3);
    transition: all 0.4s ease;
}

.avatar:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 0 35px rgba(255, 111, 97, 0.9), 0 0 70px rgba(255, 111, 97, 0.5);
}

.username {
    font-family: 'Pattaya', sans-serif;
    font-size: 32px;
    margin: 15px 0;
    background: linear-gradient(45deg, #ff6f61, #ffcc00, #ff3b2f);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 3s infinite ease;
}

.verified-icon {
    width: 22px;
    height: 22px;
    vertical-align: middle;
    filter: drop-shadow(0 0 5px rgba(255, 111, 97, 0.5));
}

.bio {
    font-size: 18px;
    line-height: 1.8;
    color: #e0e0ff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

/* Section */
.section-title {
    font-family: 'Pattaya', sans-serif;
    font-size: 28px;
    text-align: center;
    margin: 30px 0;
    position: relative;
    background: linear-gradient(45deg, #ff6f61, #ffcc00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fade-in 1.2s ease;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #ff6f61, #ffcc00);
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Social Media */
.social-media,
.bank-info,
.key-tool {
    margin: 30px 0;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.05), rgba(255, 111, 97, 0.1));
    padding: 15px 25px;
    margin: 12px auto;
    max-width: 320px;
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.social-link:hover::before {
    width: 300px;
    height: 300px;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.02);
}

.facebook:hover {
    background: linear-gradient(45deg, #3b5998, #8b9dc3);
}

.youtube:hover {
    background: linear-gradient(45deg, #ff0000, #ff6666);
}

.telegram:hover {
    background: linear-gradient(45deg, #0088cc, #33b5e5);
}

.zalo:hover {
    background: linear-gradient(45deg, #00c4b4, #66d9cc);
}

/* Bank Info */
.bank-details {
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.05), rgba(255, 111, 97, 0.1));
    padding: 20px;
    border-radius: 12px;
    max-width: 320px;
    margin: 12px auto;
    text-align: left;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease;
}

.bank-details:hover {
    transform: translateY(-5px);
}

.bank-logo {
    width: 32px;
    height: 32px;
    vertical-align: middle;
    margin-right: 12px;
    filter: drop-shadow(0 0 5px rgba(255, 111, 97, 0.5));
}

.bank-details span {
    font-size: 16px;
    line-height: 1.8;
}

/* Key Tool */
.key-button {
    background: linear-gradient(45deg, #ff6f61, #ff3b2f, #ffcc00);
    background-size: 200% 200%;
    width: 100%;
    max-width: 320px;
    border: none;
    color: #fff;
    padding: 18px;
    font-size: 18px;
    border-radius: 15px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(255, 111, 97, 0.6);
    transition: all 0.4s ease;
    display: block;
    margin: 12px auto;
    animation: gradient-shift 4s infinite ease;
}

.key-button:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 12px 35px rgba(255, 111, 97, 0.8);
}

/* Footer */
.footer {
    text-align: center;
    padding: 30px 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0 0 20px 20px;
}

.copyright {
    font-size: 14px;
    color: #e0e0ff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.author {
    color: #ffcc00;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.author:hover {
    color: #ff6f61;
    text-decoration: underline;
}

/* Animations */
@keyframes pulse-bg {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slide-up {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        margin: 15px;
        padding: 20px;
    }

    .avatar {
        width: 110px;
        height: 110px;
    }

    .username {
        font-size: 26px;
    }

    .bio,
    .social-link,
    .bank-details span,
    .key-button {
        font-size: 16px;
    }

    .nav-bar {
        flex-direction: column;
        padding: 10px;
    }

    .nav-link {
        padding: 8px 12px;
    }

    .section-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .avatar {
        width: 90px;
        height: 90px;
    }

    .username {
        font-size: 22px;
    }

    .section-title {
        font-size: 20px;
    }

    .social-link,
    .key-button,
    .bank-details {
        max-width: 280px;
        padding: 12px;
    }

    .bio,
    .social-link,
    .bank-details span,
    .key-button {
        font-size: 14px;
    }
}