*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(145deg, #4a004e 0%, #8e24aa 40%, #f06292 100%);
    font-family: system-ui, 'Segoe UI', 'Tahoma', sans-serif;
    color: #1a0b2e;
    line-height: 1.6;
    padding: 15px;
    min-height: 100vh;
}

*
.container {
    max-width: 1300px;
    margin: 0 auto;
    background: rgba(255, 240, 255, 0.88);
    backdrop-filter: blur(3px);
    border-radius: 42px;
    padding: 25px 20px;
    box-shadow: 0 25px 50px rgba(128, 0, 128, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.logo-area {
    text-align: center;
    margin-bottom: 35px;
}

.avatar-circle {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.round-avatar {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #ff69b4;
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.6), 0 0 0 4px rgba(156, 39, 176, 0.3);
    transition: all 0.3s ease;
    animation: avatarGlow 3s ease-in-out infinite;
}

.round-avatar:hover {
    transform: scale(1.03);
    box-shadow: 0 0 30px #ff69b4, 0 0 0 6px rgba(156, 39, 176, 0.4);
}

.logo-icon {
    font-size: 48px;
    animation: softPulse 3s ease-in-out infinite;
}

.site-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.ai-pink {
    color: #ff69b4;
    text-shadow: 0 0 8px #ff1493;
}

.ris-white {
    color: #ffffff;
    text-shadow: 0 0 5px #b84fc2;
}

.subtitle {
    font-size: 1rem;
    color: #ffccff;
    background: #9c27b0aa;
    display: inline-block;
    padding: 6px 18px;
    border-radius: 60px;
    backdrop-filter: blur(2px);
}

.welcome-card, .alert-box, .news-section, 
.token-info-card, .token-display-card, .support-section {
    background: rgba(255, 245, 255, 0.92);
    border-radius: 28px;
    padding: 20px 22px;
    margin-bottom: 25px;
    box-shadow: 0 6px 16px rgba(128, 0, 128, 0.12);
    border: 1px solid #f8bbff;
    transition: all 0.2s ease;
}

.welcome-card:hover, .news-section:hover {
    border-color: #e91e63;
    box-shadow: 0 12px 24px rgba(156, 39, 176, 0.2);
}

h2 {
    color: #c2185b;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

h3 {
    color: #ad1457;
    font-size: 1.25rem;
    margin-bottom: 14px;
    border-right: 5px solid #ec407a;
    padding-right: 12px;
}

.highlight-text {
    font-size: 0.95rem;
    background: #ffe4f3;
    padding: 14px 18px;
    border-radius: 24px;
    color: #5e2572;
    font-weight: 500;
}

.alert-box {
    background: #f9e6fd;
    border-right: 6px solid #f06292;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.alert-icon {
    font-size: 28px;
}

.alert-text {
    flex: 1;
    line-height: 1.6;
    font-size: 0.9rem;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.news-item {
    background: white;
    padding: 10px 15px;
    border-radius: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 12px;
    border: 1px solid #f3c4fb;
}

.news-date {
    font-size: 0.7rem;
    color: #9c27b0;
    font-weight: 700;
    background: #f3e5ff;
    padding: 3px 10px;
    border-radius: 30px;
}

.news-item p {
    margin: 0;
    flex: 1;
    font-size: 0.9rem;
}

 *
.token-info-card p, .token-display-card p {
    margin: 10px 0;
    font-size: 0.95rem;
}

.token-stats {
    background: #ffffffcc;
    border-radius: 24px;
    padding: 14px 18px;
    margin: 12px 0;
}

.token-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 1rem;
    border-bottom: 1px solid #f0bbe3;
    flex-wrap: wrap;
    gap: 8px;
}

.token-row:last-child {
    border-bottom: none;
}

.token-numbe

r {
    font-weight: 800;
    color: #c2185b;
    font-size: 1.25rem;
}

.token-bar {
    background: #e9cfef;
    height: 10px;
    border-radius: 20px;
    margin: 12px 0;
    overflow: hidden;
}

.token-bar-fill {
    background: linear-gradient(90deg, #e91e63, #ba68c8);
    height: 100%;
    border-radius: 20px;
}

.token-note {
    background: #ffddf4;
    padding: 10px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #6a1b9a;
    text-align: center;
}
*
.support-channels {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 15px 0 10px;
}

.channel {
    background: #f0d9fc;
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #4a0072;
}

.channel .channel-id {
    font-family: monospace;
    color: #d81b60;
    font-weight: 600;
}

.support-note {
    font-size: 0.7rem;
    color: #9c27b0;
    margin-top: 10px;
}

.footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 15px;
    font-size: 0.7rem;
    border-top: 1px solid #e1bee7;
    color: #ad1457;
}

@keyframes softPulse {
    0% { transform: scale(1); opacity: 0.9; text-shadow: 0 0 0px #ff80ab;}
    50% { transform: scale(1.04); opacity: 1; text-shadow: 0 0 12px #f06292;}
    100% { transform: scale(1); opacity: 0.9;}
}

@keyframes avatarGlow {
    0% { box-shadow: 0 0 0 0 rgba(255, 105, 180, 0.4), 0 0 0 2px rgba(156, 39, 176, 0.2);}
    50% { box-shadow: 0 0 0 8px rgba(255, 105, 180, 0.2), 0 0 0 5px rgba(156, 39, 176, 0.3);}
    100% { box-shadow: 0 0 0 0 rgba(255, 105, 180, 0), 0 0 0 2px rgba(156, 39, 176, 0.2);}
}


@media (max-width: 600px) {
    body {
        padding: 10px;
    }

    .container {
        padding: 18px 15px;
        border-radius: 32px;
    }

    .site-title {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    .welcome-card, .alert-box, .news-section, 
    .token-info-card, .token-display-card, .support-section {
        padding: 16px 18px;
        border-radius: 22px;
    }

    .token-row {
        flex-direction: row;
        justify-content: space-between;
    }

    .channel {
        width: auto;
        padding: 5px 14px;
    }

    .round-avatar {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 450px) {
    .round-avatar {
        width: 180px;
        height: 180px;
    }

    .token-row {
        flex-direction: column;
        align-items: flex-start;
    }
}
