/* ========================================
   CONSOLIDATED STYLES - BASE & COMPONENTS
======================================== */



/* ===== reset_v2026_v9.css ===== */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

/* ===== base_v2026_v9.css ===== */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: #0d1117;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

p, h1, h2, h3, h4, h5, h6 {
    color: #ffffff;
}

h1 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.container {
    position: relative;
    margin: 0 auto;
    width: 100%;
    padding-top: 60px;
}

.main-container {
    min-height: 55vh;
}

.swal2-icon {
    width: 100%;
    height: 100%;
    margin: 10px 0;
}

@media screen and (min-width: 1024px) {
    .container {
        max-width: 1024px;
    }
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .container {
        max-width: 768px;
    }
}

@media screen and (max-width: 767px) {
    .container {
        max-width: 500px;
    }
}

/* ===== telegram_user_display_v9.css ===== */
/* Telegram User Display Styles */

#user-display-container {
    display: none;
    margin-top: 12px;
    animation: fadeInUp 0.3s ease;
}

.telegram-user-display {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #1a2332 0%, #232d3f 100%);
    border-radius: 12px;
    border: 2px solid #ffd76a33;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.telegram-user-display:hover {
    border-color: #ffd76a66;
    box-shadow: 0 6px 16px rgba(255, 215, 106, 0.2);
    transform: translateY(-2px);
}

.telegram-user-display.loading {
    border-color: #4a9eff33;
}

.telegram-user-display.error {
    border-color: #ff4a4a33;
    background: linear-gradient(135deg, #2d1a1a 0%, #3f2323 100%);
}

/* Avatar Styles */
.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffd76a;
    box-shadow: 0 2px 8px rgba(255, 215, 106, 0.3);
    flex-shrink: 0;
}

/* User Info */
.user-info {
    flex: 1;
    min-width: 0;
}

.user-name {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-username {
    font-size: 13px;
    color: #ffd76a;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* User Actions */
.user-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
}

/* View Profile Button */
.view-profile-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(74, 158, 255, 0.2);
    border: 1px solid rgba(74, 158, 255, 0.3);
    color: #4a9eff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.view-profile-btn:hover {
    background: rgba(74, 158, 255, 0.3);
    border-color: rgba(74, 158, 255, 0.5);
    transform: scale(1.1);
}

.view-profile-btn i {
    font-size: 16px;
}

/* Clear Button */
.clear-user-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 74, 74, 0.2);
    border: 1px solid rgba(255, 74, 74, 0.3);
    color: #ff4a4a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.clear-user-btn:hover {
    background: rgba(255, 74, 74, 0.3);
    border-color: rgba(255, 74, 74, 0.5);
    transform: rotate(90deg);
}

.clear-user-btn i {
    font-size: 14px;
}

/* Loading State */
.loading-spinner {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid rgba(74, 158, 255, 0.2);
    border-top-color: #4a9eff;
    animation: spin 0.8s linear infinite;
    flex-shrink: 0;
}

.loading-text {
    font-size: 14px;
    color: #4a9eff;
    font-weight: 600;
    animation: pulse 1.5s ease-in-out infinite;
}

/* Error State */
.error-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 74, 74, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.error-icon i {
    font-size: 24px;
    color: #ff4a4a;
}

.error-text {
    font-size: 14px;
    color: #ff4a4a;
    font-weight: 600;
}

.error-subtext {
    font-size: 12px;
    color: #ff9999;
    margin-top: 4px;
    opacity: 0.8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Responsive Design */
@media (max-width: 480px) {
    .telegram-user-display {
        padding: 10px 12px;
        gap: 10px;
    }

    .user-avatar {
        width: 40px;
        height: 40px;
    }

    .user-name {
        font-size: 14px;
    }

    .user-username {
        font-size: 12px;
    }

    .user-actions {
        gap: 6px;
    }

    .view-profile-btn,
    .clear-user-btn {
        width: 28px;
        height: 28px;
    }

    .view-profile-btn i {
        font-size: 14px;
    }

    .clear-user-btn i {
        font-size: 12px;
    }

    .loading-spinner {
        width: 40px;
        height: 40px;
    }
}

/* RTL Support for Arabic */
[dir="rtl"] .telegram-user-display {
    direction: rtl;
}

[dir="rtl"] .user-name,
[dir="rtl"] .user-username {
    text-align: right;
}

/* ===== components_v9.css ===== */
/* ========================================
   COMPONENTS_V9.CSS - Common UI Components
   Generated by BLACKBOXAI - footer, buy_btn, info_section, stats, stars_banner, payment_result, referral_program, telegram_user_display, profile_introducing, buy_section variants
   ======================================== */

/* --- START: footer_v9.css & footer_v2026_v9.css --- */
hr {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(255, 213, 40, 0), rgba(255, 213, 40, 0.10), rgba(255, 213, 40, 0));
}

.footer-wrapper {
    min-height: 220px;
padding: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-sub-text {
    font-size: 14px;
}

.footer-third-party {
    max-height: 50px;
    display: flex;
}

.footer-items-wrapper {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-items-wrapper .item-default {
    margin-bottom: 10px;
}

.footer-wrapper .item,
.footer-wrapper p,
.footer-wrapper .footer-sub-text {
    color: #eaeaea;
}

.footer-wrapper .logo-wrapper .navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 0;
}

.footer-wrapper .logo-wrapper .navbar-brand .store-logo {
    display: none !important;
}

.footer-wrapper .logo-wrapper .navbar-brand .store-name-img {
    height: 40px;
    max-width: 240px;
    transform: none;
    object-fit: contain;
    object-position: left center;
}

@media screen and (max-width: 767px) {
    .footer-wrapper {
        padding: 14px 10px;
        gap: 8px;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: flex-start;
    }

    .footer-wrapper > div {
        flex: 0 0 auto;
        width: calc(50% - 4px);
    }
}
/* --- END: footer_v*.css --- */

/* --- START: buy_btn_section_v9.css & v2026 --- */
/* Add content when read */
/* --- END --- */

/* Add other components similarly... */


