/* Importing Google Fonts - Rubik */
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: clip;
    max-width: 100%;
    min-height: 100%;
}

body {
    font-family: 'Rubik', sans-serif;
    background: #0d0a1a;
    min-height: 100vh;
    color: #fff;
    font-size: 14px;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background:
        radial-gradient(ellipse 600px 600px at 10% 15%, rgba(139, 92, 246, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 500px 500px at 85% 80%, rgba(168, 85, 247, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 400px 400px at 50% 50%, rgba(124, 58, 237, 0.05) 0%, transparent 70%),
        radial-gradient(ellipse 300px 300px at 70% 20%, rgba(192, 132, 252, 0.06) 0%, transparent 60%),
        linear-gradient(180deg, #0d0a1a 0%, #110a24 40%, #0d0a1a 100%);
    pointer-events: none;
}

/* ===== MAIN CONTENT ===== */
.main-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-x: clip;
}

.page-header {
    margin-bottom: 40px;
    text-align: center;
}

.logo h1 {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
}

/* ===== SPONSORS GRID ===== */
.sponsors-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: flex-start;
}

.sponsors-grid .sponsor-card {
    width: 280px;
    flex: 0 0 280px;
}

/* ===== DESKTOP CARD - Valeri Style ===== */
.sponsor-card {
    background: rgba(26, 16, 53, 0.75);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: rgba(15, 8, 35, 0.9) 0 4px 12px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 16, 53, 1);
    height: auto;
}

.sponsor-card:hover {
    transform: translateY(-5px);
    box-shadow: rgba(15, 8, 35, 0.9) 0 8px 20px;
}

.site-logo {
    height: 100px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.sponsor-logo {
    max-width: 220px;
    max-height: 50px;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.info-button {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 2;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.info-button img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.15); }
}

.sponsor-body {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.bonuses {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
}

.bonus-item {
    flex: 1;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 4px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-item .title {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
    line-height: 1.2;
}

.bonus-item .value {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.list-items {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 8px;
}

.list-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.375;
    text-align: center;
}

.list-item svg {
    flex-shrink: 0;
    color: #c084fc;
    width: 14px;
    height: 14px;
}

.button-container {
    margin-top: auto;
    text-align: center;
    padding-top: 8px;
}

.sponsor-button {
    display: inline-block;
    width: 100%;
    padding: 10px 20px;
    background: rgba(168, 85, 247, 0.16);
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 28px;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: none;
}

.sponsor-button:hover {
    background: rgba(168, 85, 247, 0.24);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.3);
}

/* Desktop - hide mobile info button */
.mobile-info-button {
    display: none;
}

/* ===== MOBILE CARD - Valeri Row Layout ===== */
@media (max-width: 768px) {
    .main-content {
        padding: 20px 12px;
        background-image: none;
    }

    .container {
        padding: 0;
    }

    .logo h1 {
        font-size: 24px;
    }

    .sponsors-grid {
        gap: 10px;
    }

    .sponsors-grid .sponsor-card {
        width: 100%;
        flex: 0 0 100%;
    }

    .sponsor-card {
        flex-direction: row;
        align-items: center;
        height: auto;
        overflow: hidden;
    }

    .sponsor-card:hover {
        transform: none;
    }

    /* Logo col - 22% */
    .site-logo {
        flex: 0 0 22%;
        width: 22%;
        height: auto;
        min-height: 70px;
        border-bottom: none;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        padding: 10px 6px;
    }

    .site-logo .info-button {
        display: none;
    }

    .sponsor-logo {
        max-width: 100%;
        max-height: 40px;
    }

    /* Body col - bonuses */
    .sponsor-body {
        flex: 1;
        min-width: 0;
        padding: 8px;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 0;
    }

    .bonuses {
        display: flex;
        justify-content: flex-start;
        gap: 6px;
        margin-bottom: 0;
        width: 100%;
        min-width: 0;
    }

    .bonus-item {
        flex: 1;
        min-width: 0;
        padding: 6px 4px;
        text-align: left;
    }

    .bonus-item .title {
        font-size: 10px;
        font-weight: 800;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .bonus-item .value {
        font-size: 14px;
    }

    .list-items,
    .button-container {
        display: none;
    }

    /* Info button col */
    .mobile-info-button {
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 40px;
        width: 40px;
        padding: 0 4px;
    }

    .mobile-info-button .info-button {
        position: static;
        width: 32px;
        height: 32px;
        padding: 5px;
        margin: 0;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        animation: pulse 2s infinite;
    }

    .mobile-info-button .info-button img {
        width: 18px;
        height: 18px;
    }
}

/* ===== PLACEHOLDER ===== */
.placeholder-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 40px 20px;
}

.placeholder-card {
    background: linear-gradient(135deg, rgba(10, 20, 50, 0.9) 0%, rgba(26, 16, 53, 0.9) 100%);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    max-width: 600px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.placeholder-icon {
    margin: 0 auto 30px;
    width: 80px;
    height: 80px;
    color: #a855f7;
    opacity: 0.8;
}

.placeholder-card h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.2;
}

.placeholder-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    line-height: 1.6;
}

.placeholder-button {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #9333ea 0%, #a855f7 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 16px rgba(147, 51, 234, 0.4);
}

.placeholder-button:hover {
    background: linear-gradient(135deg, #a855f7 0%, #22d3ee 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(147, 51, 234, 0.6);
}

@media (max-width: 768px) {
    .placeholder-card { padding: 40px 30px; }
    .placeholder-card h1 { font-size: 24px; }
    .placeholder-card p { font-size: 14px; }
    .placeholder-icon { width: 60px; height: 60px; }
}

/* ===== FOOTER ===== */
.site-footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-left {
    display: flex;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: contain;
}

.footer-brand h3 {
    font-size: 18px;
    font-weight: 600;
    color: #8b5cf6;
    margin: 0 0 4px 0;
}

.footer-brand p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-right {
    display: flex;
    align-items: center;
}

.footer-provider {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.footer-provider img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: contain;
}

.provider-text {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.provider-text span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.provider-text strong {
    font-size: 14px;
    color: #8b5cf6;
    font-weight: 600;
}

@media (max-width: 768px) {
    .site-footer { padding: 20px; }
    .footer-content { flex-direction: column; gap: 20px; text-align: center; }
    .footer-left, .footer-right { width: 100%; justify-content: center; }
    .provider-text { align-items: center; }
}

/* ===== PAGE SUBTITLE ===== */
.page-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 8px;
    text-align: center;
}

/* ===== ABOUT PAGE ===== */
.about-section {
    max-width: 700px;
    margin: 0 auto;
}

.about-avatar-wrap {
    text-align: center;
    margin-bottom: 32px;
}

.about-avatar {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(139, 92, 246, 0.4);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.15), 0 0 0 8px rgba(139, 92, 246, 0.06);
    display: block;
    margin: 0 auto 16px;
}

.about-name {
    font-size: 28px;
    font-weight: 700;
    color: #8b5cf6;
    letter-spacing: 0.5px;
}

.about-card {
    background: rgba(26, 16, 53, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
}

.about-card-body {
    padding: 32px 36px;
}

.about-highlight {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.about-card-body p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.85;
    margin-bottom: 16px;
}

.about-card-body p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .about-avatar {
        width: 120px;
        height: 120px;
    }

    .about-name {
        font-size: 22px;
    }

    .about-card-body {
        padding: 24px 20px;
    }

    .about-highlight {
        font-size: 15px;
    }

    .about-card-body p {
        font-size: 13px;
    }
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-card {
    background: rgba(26, 16, 53, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.contact-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.contact-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-btn.telegram {
    background: rgba(168, 85, 247, 0.2);
    color: #8b5cf6;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.contact-btn.telegram:hover {
    background: rgba(168, 85, 247, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.3);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-card {
        padding: 24px;
    }
}

/* ===== SPONSOR DETAIL MODAL ===== */
.sponsor-detail-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.sponsor-detail-overlay.active {
    display: flex;
}

.sponsor-detail-modal {
    background: #1a1035;
    border-radius: 12px;
    width: 100%;
    max-width: 480px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.sponsor-detail-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background 0.2s;
    line-height: 1;
}

.sponsor-detail-close:hover {
    background: rgba(0, 0, 0, 0.7);
}

.sponsor-detail-header {
    height: 120px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px 12px 0 0;
    position: relative;
}

.sponsor-detail-logo {
    max-width: 200px;
    max-height: 60px;
    object-fit: contain;
}

.sponsor-detail-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sponsor-detail-bonuses {
    display: flex;
    gap: 10px;
}

.detail-bonus-box {
    flex: 1;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 8px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.detail-bonus-title {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 6px;
    text-transform: uppercase;
}

.detail-bonus-value {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

.sponsor-detail-descriptions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-desc-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
}

.detail-desc-item svg {
    flex-shrink: 0;
}

.sponsor-detail-long {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 16px;
}

.sponsor-detail-long p {
    margin-bottom: 10px;
}

.sponsor-detail-long ul,
.sponsor-detail-long ol {
    padding-left: 20px;
    margin-bottom: 10px;
}

.sponsor-detail-long li {
    margin-bottom: 4px;
}

.sponsor-detail-long b,
.sponsor-detail-long strong {
    color: #fff;
}

.sponsor-detail-long a {
    color: #8b5cf6;
    text-decoration: underline;
}

.sponsor-detail-actions {
    padding-top: 8px;
}

.sponsor-detail-btns-row {
    display: flex;
    gap: 10px;
}

.sponsor-detail-btns-row .sponsor-detail-btn {
    flex: 1;
}

.sponsor-fav-btn {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.12);
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: 'Rubik', sans-serif;
}

.sponsor-fav-btn .material-symbols-rounded {
    font-size: 18px;
}

.sponsor-fav-btn:hover {
    background: rgba(239, 68, 68, 0.15) !important;
    border-color: rgba(239, 68, 68, 0.3);
}

.sponsor-fav-btn.fav-active {
    background: rgba(239, 68, 68, 0.15) !important;
    border-color: rgba(239, 68, 68, 0.3);
    color: #f87171;
}

.sponsor-fav-btn.fav-active .material-symbols-rounded {
    color: #ef4444;
}

.sponsor-detail-btn {
    display: block;
    width: 100%;
    padding: 14px 20px;
    background: rgba(168, 85, 247, 0.2);
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 28px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
}

.sponsor-detail-btn:hover {
    background: rgba(168, 85, 247, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(168, 85, 247, 0.3);
}

@media (max-width: 768px) {
    .sponsor-detail-overlay {
        padding: 10px;
        align-items: flex-end;
    }

    .sponsor-detail-modal {
        max-height: 90vh;
        border-radius: 16px 16px 0 0;
        max-width: 100%;
    }

    .sponsor-detail-header {
        height: 100px;
    }

    .detail-bonus-value {
        font-size: 18px;
    }
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: rgba(20, 12, 40, 0.5); border-radius: 10px; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #8b5cf6 0%, #7c3aed 100%); border-radius: 10px; border: 2px solid rgba(20, 12, 40, 0.5); }
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, #7c3aed 0%, #6d28d9 100%); }
* { scrollbar-width: thin; scrollbar-color: #8b5cf6 rgba(20, 12, 40, 0.5); }

/* ===== AUTH PAGES ===== */
.auth-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 200px);
    padding: 40px 20px;
}

.auth-box {
    width: 100%;
    max-width: 420px;
    background: rgba(26, 16, 53, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

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

.auth-header h1 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
}

.auth-header p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.auth-icon {
    font-size: 56px;
    display: block;
    margin-bottom: 12px;
}

.auth-icon-success {
    color: #10b981;
}

.auth-icon-error {
    color: #ef4444;
}

.auth-alert {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.auth-alert-error {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}

.auth-alert-success {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #6ee7b7;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.auth-field label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
}

.auth-input-wrap {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 0 14px;
    transition: all 0.3s ease;
}

.auth-input-wrap:focus-within {
    border-color: #8b5cf6;
    background: rgba(255, 255, 255, 0.08);
}

.auth-input-wrap .material-symbols-rounded {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.35);
    flex-shrink: 0;
}

.auth-input-wrap:focus-within .material-symbols-rounded {
    color: #8b5cf6;
}

.auth-input-wrap input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-size: 14px;
    padding: 12px 10px;
    font-family: 'Rubik', sans-serif;
}

.auth-input-wrap input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.auth-hint {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
}

.auth-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px;
    background: linear-gradient(90deg, #8b5cf6, #7c3aed);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Rubik', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 6px;
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.3);
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.auth-footer p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.auth-footer a {
    color: #8b5cf6;
    text-decoration: none;
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.auth-link-btn {
    background: none;
    border: none;
    color: #8b5cf6;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    font-size: inherit;
    font-family: inherit;
    padding: 0;
}

/* Auth user header (logged in state) */
.user-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-coins {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(139, 92, 246, 0.15);
    padding: 6px 12px;
    border-radius: 20px;
    color: #8b5cf6;
    font-size: 13px;
    font-weight: 600;
}

.user-coins .material-symbols-rounded {
    font-size: 18px;
}

.user-avatar-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 6px 14px 6px 6px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
}

.user-avatar-btn:hover {
    background: rgba(255, 255, 255, 0.12);
}

.user-avatar-btn img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.user-avatar-placeholder {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

@media (max-width: 480px) {
    .auth-box {
        padding: 28px 20px;
    }
    .auth-header h1 {
        font-size: 20px;
    }
}

.auth-btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.auth-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
    transform: none;
}

.auth-btn-secondary:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

/* Password Strength */
.password-strength {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.strength-bars {
    display: flex;
    gap: 4px;
    flex: 1;
}

.strength-bar {
    height: 4px;
    flex: 1;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
}

.strength-text {
    font-size: 11px;
    font-weight: 600;
    min-width: 50px;
    text-align: right;
}

.password-rules {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
    margin-top: 8px;
}

.password-rules .rule {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    transition: color 0.2s ease;
}

.password-rules .rule .material-symbols-rounded {
    font-size: 14px;
    color: rgba(239, 68, 68, 0.6);
    transition: color 0.2s ease;
}

.password-rules .rule.passed {
    color: #10b981;
}

.password-rules .rule.passed .material-symbols-rounded {
    color: #10b981;
}

/* User Dropdown */
.user-dropdown-wrap {
    position: relative;
}

.user-avatar-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 6px 10px 6px 6px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 13px;
    font-weight: 500;
    font-family: 'Rubik', sans-serif;
}

.user-avatar-btn:hover {
    background: rgba(255, 255, 255, 0.12);
}

.user-chevron {
    font-size: 18px;
    color: rgba(255,255,255,0.5);
    transition: transform 0.3s ease;
}

.user-dropdown-wrap.open .user-chevron {
    transform: rotate(180deg);
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 220px;
    background: #1a1035;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    z-index: 2000;
    overflow: hidden;
}

.user-dropdown-wrap.open .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
}

.udd-avatar {
    width: 36px;
    height: 36px;
    font-size: 16px;
    flex-shrink: 0;
}

.udd-name {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.udd-coins {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 11px;
    color: #8b5cf6;
    margin-top: 2px;
}

.udd-coins .material-symbols-rounded {
    font-size: 14px;
}

.user-dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.user-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.user-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.user-dropdown-item .material-symbols-rounded {
    font-size: 20px;
}

.user-dropdown-logout {
    color: #ef4444;
}

.user-dropdown-logout:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}


/* ===== PROFILE PAGE ===== */
.profile-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 20px;
}

.profile-card {
    width: 100%;
    max-width: 480px;
    background: rgba(26, 16, 53, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.profile-avatar-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 30px 24px;
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.08) 0%, transparent 100%);
}

.profile-avatar-wrap {
    position: relative;
    margin-bottom: 16px;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(139, 92, 246, 0.4);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.15);
}

.profile-avatar-letter {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    border: 3px solid rgba(139, 92, 246, 0.4);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.15);
}

.avatar-change-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border: 2px solid #1a1035;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.avatar-change-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.avatar-change-btn .material-symbols-rounded {
    font-size: 18px;
}

.profile-username {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.profile-coins {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(139, 92, 246, 0.15);
    padding: 6px 16px;
    border-radius: 20px;
    color: #8b5cf6;
    font-size: 14px;
    font-weight: 600;
}

.profile-coins .material-symbols-rounded {
    font-size: 20px;
}

.profile-info-section {
    padding: 24px 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.profile-info-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.profile-info-row .material-symbols-rounded {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
}

.profile-info-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.profile-info-value {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    overflow-wrap: break-word;
    word-break: break-all;
}

/* ===== AVATAR SELECTION MODAL ===== */
.avatar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.avatar-overlay.active {
    display: flex;
}

.avatar-modal {
    background: #1a1035;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    width: 100%;
    max-width: 620px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.avatar-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.avatar-modal-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.avatar-modal-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.avatar-modal-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.avatar-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    padding: 24px;
    overflow-y: auto;
}

.avatar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.avatar-item img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.avatar-item:hover img {
    border-color: rgba(139, 92, 246, 0.4);
    transform: scale(1.05);
}

.avatar-item.selected img {
    border-color: #8b5cf6;
    box-shadow: 0 0 16px rgba(139, 92, 246, 0.3);
}

.avatar-item-name {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    line-height: 1.2;
    max-width: 90px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.avatar-select-btn {
    padding: 4px 14px;
    border-radius: 14px;
    font-size: 11px;
    font-weight: 600;
    font-family: 'Rubik', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
}

.avatar-select-btn:hover {
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
}

.avatar-item.selected .avatar-select-btn {
    background: linear-gradient(90deg, #8b5cf6, #7c3aed);
    color: #fff;
}

@media (max-width: 768px) {
    .profile-wrapper {
        padding: 20px 12px;
    }

    .profile-avatar-section {
        padding: 30px 20px 20px;
    }

    .profile-info-section {
        padding: 20px;
    }

    .avatar-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        padding: 16px;
    }

    .avatar-item img {
        width: 70px;
        height: 70px;
    }

    .avatar-modal {
        max-height: 90vh;
    }
}

@media (max-width: 480px) {
    .avatar-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .avatar-item img {
        width: 60px;
        height: 60px;
    }
}


/* ===== PROFILE PASSWORD SECTION ===== */
.profile-section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.profile-section-title .material-symbols-rounded {
    font-size: 20px;
    color: #8b5cf6;
}

.profile-pw-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.profile-pw-form .auth-btn {
    margin-top: 4px;
}

/* ===== AUTH FORGOT LINK ===== */
.auth-forgot-link {
    display: inline-block;
    margin-top: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.2s ease;
}

.auth-forgot-link:hover {
    color: #8b5cf6;
}

/* ===== HOMEPAGE BANNER SLIDER ===== */
.hp-slider-wrap {
    margin: 0 auto 24px;
    max-width: 1392px;
}

.hp-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 5px;
    background: #0d0a1a;
    box-shadow: rgba(15, 8, 35, 0.45) 0 4px 12px;
}

.hp-slider-track {
    position: relative;
    width: 100%;
}

.hp-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.hp-slide:first-child {
    position: relative;
}

.hp-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

.hp-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}

.hp-slide a {
    display: block;
    width: 100%;
    height: 100%;
}

.hp-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: all 0.3s ease;
    opacity: 0;
}

.hp-slider:hover .hp-slider-btn {
    opacity: 1;
}

.hp-slider-btn:hover {
    background: rgba(0, 0, 0, 0.75);
    transform: translateY(-50%) scale(1.1);
}

.hp-slider-prev {
    left: 12px;
}

.hp-slider-next {
    right: 12px;
}

.hp-slider-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.hp-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hp-dot.active {
    background: #8b5cf6;
    transform: scale(1.2);
}

.hp-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* ===== HOMEPAGE SPONSORS SECTION ===== */
.hp-sponsors-section {
    margin-bottom: 24px;
    max-width: 1392px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== SPONSOR LOGO TICKER ===== */
.hp-ticker-wrap {
    max-width: 1392px;
    margin: 0 auto 32px;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    background: rgba(26, 16, 53, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 18px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
    width: 100%;
    box-sizing: border-box;
}

.hp-ticker {
    display: flex;
    align-items: center;
    gap: 48px;
    width: max-content;
    will-change: transform;
}

.hp-ticker-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    text-decoration: none;
    opacity: 0.45;
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
}

.hp-ticker-item:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.06);
    transform: scale(1.1);
}

.hp-ticker-item img {
    max-height: 38px;
    max-width: 130px;
    object-fit: contain;
    filter: grayscale(0.4) brightness(0.85);
    transition: filter 0.3s ease;
}

.hp-ticker-item:hover img {
    filter: grayscale(0) brightness(1.15);
}

.hp-ticker-name {
    font-size: 15px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.55);
    white-space: nowrap;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.hp-ticker-item:hover .hp-ticker-name {
    color: #fff;
}

/* ===== HOMEPAGE SOCIAL BAR - PILL STYLE ===== */
.hp-socials-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
    justify-content: center;
    max-width: 1392px;
    margin-left: auto;
    margin-right: auto;
}

.hp-social-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(26, 16, 53, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 0;
}

.hp-social-pill:hover {
    background: rgba(26, 16, 53, 1);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hp-social-pill-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.hp-social-pill-icon svg {
    width: 16px;
    height: 16px;
}

.hp-social-pill-name {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
}

.hp-social-pill-follow {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    padding: 4px 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.hp-social-pill-follow .material-symbols-rounded {
    font-size: 14px;
}

.hp-social-pill:hover .hp-social-pill-follow {
    color: #8b5cf6;
    border-color: rgba(139, 92, 246, 0.4);
}

/* ===== HOMEPAGE QUICK ACCESS CARDS ===== */
.hp-quick-cards {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 16px;
    margin-bottom: 28px;
    max-width: 1392px;
    margin-left: auto;
    margin-right: auto;
}

.hp-quick-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.06);
    cursor: pointer;
    min-height: 0;
}

.hp-quick-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(139, 92, 246, 0.08);
    border-color: rgba(139, 92, 246, 0.2);
}

.hp-quick-card-disabled {
    cursor: default;
}

.hp-quick-card-disabled:hover {
    transform: none;
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.06);
}

img.hp-quick-card-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: absolute;
    top: 0;
    left: 0;
}

/* Sol kart: img görselin doğal yüksekliğini belirlesin */
.hp-quick-card:first-child img.hp-quick-card-bg {
    position: relative;
}

.hp-quick-card:hover img.hp-quick-card-bg {
    transform: scale(1.05);
}

.hp-quick-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 50%);
    z-index: 1;
    transition: all 0.5s ease;
}

.hp-quick-card:hover .hp-quick-card-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.25) 0%, transparent 40%);
}

.hp-quick-card-content {
    position: absolute;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.4s ease;
}

.hp-quick-card:hover .hp-quick-card-content {
    transform: translateY(-4px);
}

.hp-quick-card-icon {
    font-size: 36px;
    color: #a78bfa;
    margin-bottom: 4px;
    filter: drop-shadow(0 2px 12px rgba(139, 92, 246, 0.4));
    transition: all 0.4s ease;
}

.hp-quick-card:hover .hp-quick-card-icon {
    transform: scale(1.15);
    color: #c4b5fd;
    filter: drop-shadow(0 4px 20px rgba(139, 92, 246, 0.7));
}

.hp-quick-card-title {
    position: relative;
    z-index: 2;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.9), 0 0 40px rgba(139, 92, 246, 0.2);
    transition: all 0.4s ease;
}

.hp-quick-card:hover .hp-quick-card-title {
    letter-spacing: 5px;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.6), 0 0 30px rgba(139, 92, 246, 0.4);
}

.hp-quick-card-subtitle {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

.hp-quick-card:hover .hp-quick-card-subtitle {
    color: #c4b5fd;
    letter-spacing: 1.5px;
    text-shadow: 0 0 12px rgba(139, 92, 246, 0.4);
}

.hp-quick-card-badge {
    position: absolute;
    top: 12px;
    right: 14px;
    z-index: 3;
    font-size: 10px;
    font-weight: 700;
    color: #0d0a1a;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}

@media (max-width: 768px) {
    .hp-socials-bar {
        gap: 8px;
        margin-bottom: 16px;
    }

    .hp-social-pill {
        padding: 8px 12px;
        gap: 8px;
    }

    .hp-social-pill-icon {
        width: 24px;
        height: 24px;
    }

    .hp-social-pill-icon svg {
        width: 14px;
        height: 14px;
    }

    .hp-social-pill-name {
        font-size: 12px;
    }

    .hp-social-pill-follow {
        font-size: 10px;
        padding: 3px 8px;
    }

    .hp-quick-cards {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 20px;
    }

    .hp-quick-card {
        border-radius: 10px;
    }

    .hp-quick-card:first-child img.hp-quick-card-bg,
    img.hp-quick-card-bg {
        position: relative;
    }

    .hp-quick-card-icon {
        font-size: 26px;
    }

    .hp-quick-card-title {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .hp-quick-card-subtitle {
        font-size: 11px;
    }

    .hp-ticker-wrap {
        margin-bottom: 20px;
        padding: 12px 0;
        border-radius: 8px;
    }

    .hp-ticker {
        gap: 32px;
    }

    .hp-ticker-item img {
        max-height: 28px;
        max-width: 90px;
    }

    .hp-ticker-item {
        opacity: 0.55;
        padding: 6px 10px;
    }
}

/* Mobile slider */
@media (max-width: 768px) {
    .hp-slider {
        border-radius: 5px;
    }

    .hp-slide img {
        border-radius: 5px;
    }

    .hp-slider-wrap {
        margin-bottom: 16px;
    }

    .hp-slider-btn {
        width: 32px;
        height: 32px;
        opacity: 1;
    }

    .hp-slider-btn .material-symbols-rounded {
        font-size: 20px;
    }

    .hp-sponsors-section {
        margin-bottom: 16px;
    }
}


/* ===== STORE PAGE ===== */
/* Store Container */
.store-container {
    padding: 30px 0;
}

/* Store Header */
.store-header {
    text-align: center;
    margin-bottom: 30px;
}

.store-header h1 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 700;
}

.store-header p {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
}

/* Category Filter */
.category-filter {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
    padding: 15px;
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.08);
}

.category-btn {
    padding: 12px 24px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: rgba(255,255,255,0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.category-btn:hover {
    background: rgba(91, 83, 210, 0.2);
    border-color: #5b53d2;
    color: #fff;
    transform: translateY(-2px);
}

.category-btn.active {
    background: #5b53d2;
    border-color: #5b53d2;
    color: #fff;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 18px;
    align-items: start;
    margin-bottom: 40px;
}

/* Product Card */
.product-card {
    background: linear-gradient(180deg, rgba(33, 19, 61, 0.92) 0%, rgba(24, 13, 45, 0.95) 100%);
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    backdrop-filter: blur(10px);
    width: 100%;
    min-width: 0;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(10, 4, 20, 0.48), 0 0 0 1px rgba(139, 92, 246, 0.35);
    border-color: rgba(139, 92, 246, 0.42);
}

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    color: #fff;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(255, 68, 68, 0.4);
    letter-spacing: 0.5px;
}

.product-badge.featured {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.product-image-wrap {
    width: 100%;
    margin: 0;
    aspect-ratio: 1 / 1;
    background: linear-gradient(180deg, rgba(29, 14, 56, 0.92) 0%, rgba(20, 10, 39, 0.94) 100%);
    padding: 8px 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 14px 14px 0 0;
    border: none;
    box-shadow: none;
}

.product-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 14px;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.01);
}

.product-info {
    padding: 16px 14px 12px;
}

.product-category {
    color: rgba(219, 193, 255, 0.95);
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    display: inline-block;
    padding: 4px 8px;
    background: rgba(139, 92, 246, 0.22);
    border-radius: 6px;
}

.product-name {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
    min-height: 31px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-description {
    color: rgba(229, 214, 255, 0.72);
    font-size: 0.82rem;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 18px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(139, 92, 246, 0.22);
}

.product-price {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-current {
    color: #f5f8ff;
    font-size: 2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
    text-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
}

.price-current i {
    font-size: 1rem;
    color: #c4b5fd;
}

.price-original {
    color: rgba(255,255,255,0.3);
    font-size: 0.85rem;
    text-decoration: line-through;
}

.add-to-cart-btn {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: #f7f2ff;
    border: none;
    padding: 11px 24px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.88rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 8px 18px rgba(124, 58, 237, 0.35);
    white-space: nowrap;
}

.add-to-cart-btn:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(124, 58, 237, 0.48);
}

.add-to-cart-btn:active {
    transform: translateY(0);
}

.add-to-cart-btn i {
    font-size: 1rem;
}

/* Stock Badge */
.stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.stock-badge.in-stock {
    background: rgba(76, 175, 80, 0.15);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.stock-badge.low-stock {
    background: rgba(255, 152, 0, 0.15);
    color: #ff9800;
    border: 1px solid rgba(255, 152, 0, 0.3);
}

.stock-badge.out-of-stock {
    background: rgba(244, 67, 54, 0.15);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

/* Store Responsive */
@media (max-width: 768px) {
    .store-header h1 {
        font-size: 1.8rem;
    }
    
    .store-container {
        padding: 20px 0;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 14px;
    }
    
    .product-card {
        width: 100%;
    }
    
    .product-image-wrap {
        aspect-ratio: 1 / 1;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .product-name {
        font-size: 1.05rem;
        min-height: auto;
    }
    
    .product-description {
        font-size: 0.78rem;
        min-height: auto;
    }
    
    .price-current {
        font-size: 1.65rem;
    }
    
    .add-to-cart-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
    
    .category-filter {
        padding: 12px;
    }
    
    .category-btn {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-image-wrap {
        aspect-ratio: 1 / 1;
    }
    
    .product-info {
        padding: 12px;
    }
    
    .product-name {
        font-size: 0.9rem;
    }
    
    .product-description {
        font-size: 0.75rem;
    }
}
