* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 800px;
    padding: 30px;
    margin: 20px;
}

header {
    text-align: center;
    margin-bottom: 30px;
}

header h1 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

header p {
    color: #666;
    font-size: 1.1rem;
}

section {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid #e9ecef;
}

h2 {
    color: #444;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
}

h3 {
    color: #555;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

h4 {
    color: #666;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row .form-group {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #495057;
    display: flex;
    align-items: center;
    gap: 8px;
}

input, select, button {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #dee2e6;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

input:focus, select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.check-btn {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 15px;
    font-size: 1.1rem;
}

.hidden {
    display: none !important;
}

.token-display {
    background: #e9ecef;
    padding: 15px;
    border-radius: 10px;
    font-family: monospace;
    word-break: break-all;
    margin: 15px 0;
    border: 2px dashed #adb5bd;
}

.active-tokens {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid #dee2e6;
}

#tokenList {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.token-item {
    background: white;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.result-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    border: 2px solid #e9ecef;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f1f3f4;
}

.result-item:last-child {
    border-bottom: none;
}

.result-label {
    font-weight: 600;
    color: #5f6368;
    display: flex;
    align-items: center;
    gap: 8px;
}

.result-value {
    font-weight: 500;
    color: #202124;
}

.highlight {
    color: #f5576c;
    font-weight: 700;
    font-size: 1.2rem;
}

#loading {
    text-align: center;
    margin: 30px 0;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.error-message {
    background: #fee;
    color: #d33;
    padding: 15px;
    border-radius: 10px;
    border: 2px solid #fcc;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.token-status {
    font-size: 0.9rem;
    padding: 5px 10px;
    border-radius: 5px;
    margin-left: 10px;
}

.token-status.valid {
    background: #d4edda;
    color: #155724;
}

.token-status.invalid {
    background: #f8d7da;
    color: #721c24;
}

footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #e9ecef;
    color: #6c757d;
    font-size: 0.9rem;
}

footer p:first-child {
    font-family: monospace;
    background: #f8f9fa;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    .container {
        padding: 20px;
    }
    
    section {
        padding: 20px;
    }
}
/* Add these styles to your existing styles.css */

/* Social Links - Colorful Buttons */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    min-width: 140px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.social-btn:active {
    transform: translateY(-1px);
}

/* Telegram Button - Blue Gradient */
.social-btn.telegram {
    background: linear-gradient(135deg, #0088cc 0%, #0077b5 100%);
    color: white;
}

.social-btn.telegram:hover {
    background: linear-gradient(135deg, #0099e6 0%, #0088cc 100%);
    box-shadow: 0 8px 20px rgba(0, 136, 204, 0.3);
}

/* YouTube Button - Red Gradient */
.social-btn.youtube {
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
    color: white;
}

.social-btn.youtube:hover {
    background: linear-gradient(135deg, #FF3333 0%, #FF0000 100%);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3);
}

/* Admin Button - Purple Gradient */
.social-btn.admin {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.social-btn.admin:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

/* Icon Styles */
.social-btn i {
    font-size: 1.2rem;
}

/* Back Button - Gray Gradient */
.back-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 25px;
    background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    margin-top: 15px;
    transition: all 0.3s ease;
    font-weight: 600;
    min-width: 140px;
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.2);
}

.back-btn:hover {
    background: linear-gradient(135deg, #5a6268 0%, #495057 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(108, 117, 125, 0.3);
}

/* Social Media Section Header */
.social-section {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.social-section h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Social Links in Footer */
footer .social-links {
    margin: 15px 0;
}

footer .social-btn {
    padding: 10px 20px;
    min-width: 120px;
    font-size: 0.9rem;
}

/* Pulse Animation for Buttons */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 136, 204, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 136, 204, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 136, 204, 0);
    }
}

.social-btn.pulse {
    animation: pulse 2s infinite;
}

/* Responsive Social Buttons */
@media (max-width: 768px) {
    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .social-btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 20px;
    }
    
    .back-btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 20px;
    }
}

@media (max-width: 480px) {
    .social-btn {
        min-width: 120px;
        padding: 12px 18px;
        font-size: 0.9rem;
    }
    
    .social-btn i {
        font-size: 1rem;
    }
}

/* Additional Color Variations */
.social-btn.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.social-btn.whatsapp:hover {
    background: linear-gradient(135deg, #2de473 0%, #1a9e8e 100%);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.social-btn.facebook {
    background: linear-gradient(135deg, #1877F2 0%, #0d5cb6 100%);
    color: white;
}

.social-btn.facebook:hover {
    background: linear-gradient(135deg, #2d86f3 0%, #1a6fd8 100%);
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.3);
}

.social-btn.twitter {
    background: linear-gradient(135deg, #1DA1F2 0%, #0d8bd9 100%);
    color: white;
}

.social-btn.twitter:hover {
    background: linear-gradient(135deg, #2daaf3 0%, #1a9ae0 100%);
    box-shadow: 0 8px 20px rgba(29, 161, 242, 0.3);
}

/* Button Container with Shadow */
.button-container {
    display: inline-block;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.button-container:hover {
    transform: translateY(-3px);
}

/* Button with Icon Only */
.social-btn.icon-only {
    width: 50px;
    height: 50px;
    padding: 0;
    min-width: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-btn.icon-only i {
    font-size: 1.5rem;
    margin: 0;
}

/* Gradient Border Effect */
.social-btn.gradient-border {
    position: relative;
    background: white;
    color: #333;
    z-index: 1;
}

.social-btn.gradient-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #0088cc, #FF0000, #667eea);
    border-radius: 52px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-btn.gradient-border:hover::before {
    opacity: 1;
}

.social-btn.gradient-border:hover {
    color: white;
}
@media (max-width: 480px) {
    body {
        padding: 10px;
    }
    
    header h1 {
        font-size: 1.7rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
}