body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #f9ca24, #ff9a9e);
    background-size: 400% 400%;
    animation: gradientShift 10s ease infinite;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 90%;
}

.logo {
    max-width: 150px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

h1 {
    color: #ff6b6b;
    font-size: 2.5em;
    margin: 10px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

p {
    font-size: 1.2em;
    color: #555;
    margin: 20px 0;
    line-height: 1.5;
}

.social {
    margin-top: 30px;
}

.social a {
    display: inline-block;
    margin: 10px 15px;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social a:nth-child(1) { background: #1da1f2; } /* Twitter blue */
.social a:nth-child(2) { background: #1da1f2; } /* Twitter blue */
.social a:nth-child(3) { background: #0088cc; } /* Telegram blue */

.social a:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contract-tab {
    margin-top: 25px;
    padding: 14px 16px;
    border-radius: 12px;
    background: linear-gradient(135deg, #111827, #1f2937);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-size: 0.95em;
}

.tab-label {
    font-weight: 700;
    letter-spacing: 0.2px;
}

.tab-value {
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    opacity: 0.85;
    max-width: 62%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
