body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #000;
    color: #fff;
    font-family: 'Courier New', Courier, monospace;
    background-image: url('https://files.catbox.moe/vpc5d9.png');
    background-size: cover;
    background-attachment: fixed;
}

.container {
    text-align: center;
    max-width: 600px;
    padding: 20px;
    background-color: rgba(255, 215, 0, 0.2); /* Gold color with transparency */
    border: 2px solid #ffd700; /* Gold color */
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5); /* Gold color */
}

h1 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #ffd700; /* Gold color */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

p {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #fff;
}

.stats {
    margin: 20px 0;
    font-size: 1.2em;
    color: #fff;
}

.social-buttons {
    margin-top: 20px;
}

.social-buttons a {
    margin: 0 10px;
}

.social-buttons img {
    width: 48px;
    height: 48px;
}

#pixi-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Add some sparkles for a luxurious effect */
.sparkle {
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
    animation: sparkle 1.5s infinite;
}

@keyframes sparkle {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
.telegram-button {
    margin: 30px 0;
}

.gold-button {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ffed4e, #daa520, #ffd700);
    padding: 20px 40px;
    border-radius: 15px;
    text-decoration: none;
    color: #000;
    font-weight: bold;
    font-size: 1.3em;
    text-align: center;
    border: 3px solid #ffed4e;
    box-shadow:
            0 0 20px rgba(255, 215, 0, 0.8),
            inset 0 2px 0 rgba(255, 255, 255, 0.4),
            inset 0 -2px 0 rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    transform: perspective(500px) rotateX(5deg);
    min-width: 250px;
}

.gold-button:hover {
    transform: perspective(500px) rotateX(0deg) scale(1.05);
    box-shadow:
            0 0 30px rgba(255, 215, 0, 1),
            inset 0 2px 0 rgba(255, 255, 255, 0.6),
            inset 0 -2px 0 rgba(0, 0, 0, 0.3);
}

.gold-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.gold-button:hover:before {
    left: 100%;
}

.button-text {
    display: block;
    font-size: 1.4em;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.button-subtext {
    display: block;
    font-size: 0.8em;
    opacity: 0.9;
    margin-top: 5px;
}