/* assets/css/_components.css */

/* Mesaj kutuları */
.message-box {
    padding: 12px;
    border-radius: 0.75rem; /* Consistent with your other elements */
    text-align: center;
    margin-bottom: 20px;
    font-size: 14px;
    border: 1px solid transparent;
    animation: fadeIn 0.3s ease;
    word-wrap: break-word; /* Ensure long messages wrap */
    position: relative; /* Kapatma butonu için pozisyon referansı */
    display: flex; /* İçeriği ve butonu hizalamak için */
    align-items: center;
    justify-content: space-between; /* İçerik ve butonu iki yana yasla */
}
.message-box span {
    flex-grow: 1; /* Mesaj metninin boşluğu doldurmasını sağla */
    text-align: center;
}
.close-message-btn {
    background: none;
    border: none;
    color: inherit; /* Mesaj kutusunun rengini miras al */
    font-size: 1.2em; /* Kapatma ikonu boyutu */
    cursor: pointer;
    margin-left: 10px; /* Mesaj ile buton arasına boşluk */
    transition: color 0.2s ease;
}
.close-message-btn:hover {
    color: var(--text-primary); /* Hover durumunda rengi değiştir */
}
.error-box {
    background-color: rgba(248, 113, 113, 0.1); /* Red-ish background */
    border-color: rgba(248, 113, 113, 0.3); /* Red-ish border */
    color: #fca5a5; /* Light red text */
}
.success-box {
    background-color: rgba(74, 222, 128, 0.1); /* Green-ish background */
    border-color: rgba(74, 222, 128, 0.3); /* Green-ish border */
    color: #86efac; /* Light green text */
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* SweetAlert özelleştirmeleri */
.swal-popup {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border) !important;
    border-radius: 1rem !important;
    color: var(--text-primary) !important;
}
.swal-confirm-button {
    background-color: var(--accent-primary) !important;
    border-radius: 0.75rem !important;
    box-shadow: 0 2px 10px rgba(236, 72, 153, 0.3) !important;
}
.swal-cancel-button {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-radius: 0.75rem !important;
}
.swal-toast {
    background: rgba(30, 40, 55, 0.85) !important;
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3) !important;
    color: var(--text-primary) !important;
}
.swal-toast .swal2-title {
    color: var(--text-primary) !important;
    font-size: 1em !important;
}

/* Modal (Para Çekme Merkezi) stilleri */
.withdraw-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
}
.withdraw-modal-overlay.visible {
    opacity: 1;
    pointer-events: auto;
}
.withdraw-modal {
    background: var(--bg-gradient-3);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    width: 95%;
    max-width: 500px;
    height: 90%;
    max-height: 800px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    transform: scale(0.95);
    transition: transform 0.3s ease-in-out;
}
.withdraw-modal-overlay.visible .withdraw-modal {
    transform: scale(1);
}
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid var(--glass-border);
    flex-shrink: 0;
}
.modal-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}
.modal-close-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s, transform 0.2s;
}
.modal-close-btn:hover {
    color: var(--accent-primary);
    transform: rotate(90deg);
}
.modal-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    overflow: hidden;
}
.modal-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-shrink: 0;
}
.modal-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 0.75rem;
    border: 1px solid var(--glass-border);
    background: var(--icon-bg);
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}
.modal-action-btn:hover {
    background: var(--accent-secondary);
    color: white;
    border-color: var(--accent-secondary);
}
.modal-action-btn.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
}
.modal-iframe-container {
    flex-grow: 1;
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}
#withdraw-iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.iframe-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 40, 69, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.main-wrapper.modal-open .app-container {
    filter: blur(5px) brightness(0.7);
    transform: scale(0.98);
    pointer-events: none;
    transition: filter 0.3s ease, transform 0.3s ease;
}

/* Alt navigasyon çubuğu ve CTA menüsü stilleri */
.bottom-nav {
    width: 100%;
    height: var(--bottom-nav-height);
    background: rgba(15, 10, 25, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    position: fixed; /* Sabit konumlandırma */
    bottom: 0; /* Ekranın en altında */
    left: 50%; /* Yatayda ortala */
    transform: translateX(-50%); /* Ortalamayı tamamla */
    max-width: 600px; /* main-wrapper ile aynı genişlik */
}
.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
    flex-grow: 1;
}
.nav-item i { font-size: 20px; }
.nav-item span { font-size: 11px; margin-top: 5px; }
.nav-item.active { color: var(--accent-primary); }
.cta-button {
    background: linear-gradient(45deg, var(--accent-secondary), var(--accent-primary));
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid #1f1f2e;
    display: grid;
    place-items: center;
    margin-top: -25px;
    font-size: 28px;
    border: 4px solid var(--bg-gradient-3);
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}
.app-header, .scrollable-content {
    transition: filter 0.4s ease, transform 0.4s ease;
}
.main-wrapper.cta-menu-active .app-header,
.main-wrapper.cta-menu-active .scrollable-content {
    filter: blur(5px) brightness(0.7);
    transform: scale(0.99);
    pointer-events: none;
}
.cta-menu-container {
    position: relative;
}
.bottom-nav .cta-menu-container {
    position: relative;
}
.bottom-nav .cta-button {
    position: relative;
    z-index: 1001;
}
.bottom-nav .cta-menu-items {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}
.bottom-nav .cta-menu-item {
    position: absolute;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 4px;
    padding: 8px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}
.bottom-nav .cta-menu-item {
    background: transparent;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    color: var(--text-secondary);
    z-index: -1;
    opacity: 0.9;
}
.bottom-nav .cta-menu-item span {
    display: none;
}
.bottom-nav #cta-item-left {
    transform: translateX(-30px) translateY(-50px) rotate(-40deg);font-size: 25px;
}
.bottom-nav #cta-item-right {
    transform: translateX(30px) translateY(-45px) rotate(40deg);font-size: 25px;
}
.main-wrapper.cta-menu-active .bottom-nav .cta-menu-item {
    background: rgba(40, 40, 60, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    color: var(--text-primary);
    width: 90px;
    height: 90px;
    border-radius: 28px;
    z-index: 1002;
    opacity: 1;
    pointer-events: auto;
}
.main-wrapper.cta-menu-active .bottom-nav .cta-menu-item span {
    display: block;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
}
.main-wrapper.cta-menu-active .bottom-nav #cta-item-left {
    transform: translateX(-70px) translateY(-85px) rotate(-15deg);
}
.main-wrapper.cta-menu-active .bottom-nav #cta-item-right {
    transform: translateX(70px) translateY(-85px) rotate(15deg);
}
#cta-menu-toggle i {
    transition: transform 0.3s ease;
}
.main-wrapper.cta-menu-active #cta-menu-toggle i {
    transform: rotate(135deg);
}
.nav-item.ai-btn .ai-icon-wrapper {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}
.nav-item.ai-btn .ai-icon {
    width: 100%;
    height: 100%;
    overflow: visible;
}
.ai-icon circle {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
    transform-origin: 50% 50%;
    transition: all 0.3s ease;
}
.ai-icon .ai-circle-1 {
    stroke: rgba(139, 92, 246, 0.4);
    animation: ai-orbit-1 8s linear infinite;
}
.ai-icon .ai-circle-2 {
    stroke: rgba(139, 92, 246, 0.7);
    animation: ai-orbit-2 6s linear infinite;
}
.ai-icon .ai-circle-3 {
    stroke: rgba(236, 72, 153, 0.8);
    animation: ai-orbit-3 4s linear infinite;
}
.nav-item.ai-btn.active .ai-icon circle,
.nav-item.ai-btn:hover .ai-icon circle {
    stroke-width: 10;
    filter: drop-shadow(0 0 3px rgba(196, 181, 253, 0.7));
}
.nav-item.ai-btn.active span {
    color: var(--accent-primary);
}
@keyframes ai-orbit-1 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes ai-orbit-2 {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}
@keyframes ai-orbit-3 {
    from { transform: rotate(0deg) scale(0.8); }
    50% { transform: rotate(180deg) scale(1.2); }
    to { transform: rotate(360deg) scale(0.8); }
}

/* Scroll-to-top butonu */
.scroll-to-top-btn {
    position: fixed;
    bottom: calc(var(--bottom-nav-height) + 15px);
    right: 15px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--accent-secondary), var(--accent-primary));
    color: white;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 20px;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.scroll-to-top-btn.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.scroll-to-top-btn:hover {
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}
.scroll-to-top-btn .fa-rocket {
    transform: rotate(-45deg);
    transition: transform 0.2s ease-in-out;
}
.scroll-to-top-btn:hover .fa-rocket {
    transform: rotate(-45deg) scale(1.1);
}
.scroll-to-top-btn::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%) scaleY(0);
    transform-origin: top;
    width: 15px;
    height: 30px;
    background: linear-gradient(to top, #ffab00, #ff5722, transparent);
    border-radius: 50% 50% 50% 50% / 80% 80% 20% 20%;
    filter: blur(3px);
    transition: transform 0.2s ease-out;
}
.scroll-to-top-btn.launching {
    animation: rocket-launch 0.8s ease-in forwards;
}
.scroll-to-top-btn.launching::before {
    animation: flame-flicker 0.5s ease-in-out forwards;
}
@keyframes rocket-launch {
    0% {
        transform: translateY(0) rotate(0);
        opacity: 1;
    }
    20% {
        transform: translateY(-10px) rotate(-5deg);
    }
    100% {
        transform: translateY(-120vh) rotate(15deg);
        opacity: 0;
    }
}
@keyframes flame-flicker {
    0% { transform: translateX(-50%) scaleY(0); }
    50% { transform: translateX(-50%) scaleY(1.5); }
    100% { transform: translateX(-50%) scaleY(0); }
}

/* Genel tablo stilleri (Gelir sayfasında da kullanılıyor) */
.table-wrapper {
    overflow-x: auto;
}
.income-table {
    width: 100%;
    border-collapse: collapse;
}
.income-table .table-header, .income-table .table-row {
    display: grid;
}
.income-table .table-header {
    border-bottom: 2px solid var(--glass-border);
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.income-table .table-row {
    border-bottom: 1px solid var(--glass-border);
    transition: background-color 0.2s ease;
}
.income-table .table-body .table-row:last-child {
    border-bottom: none;
}
.income-table .table-row:hover {
    background-color: rgba(255, 255, 255, 0.04);
}
.income-table .table-header span, .income-table .table-row span {
    padding: 14px 10px;
    display: flex;
    align-items: center;
    white-space: nowrap;
}
.income-table .table-header span:not(:first-child), .income-table .table-row span:not(:first-child) {
    justify-content: flex-end;
}
.multi-line-cell {
    flex-direction: column;
    align-items: flex-end !important;
    gap: 4px;
}
.multi-line-cell .primary-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
}
.multi-line-cell .secondary-value {
    font-size: 13px;
    font-weight: 500;
    color: #4ade80;
}
.date-cell {
    white-space: nowrap;
}
.income-table .fa-gem {
    color: #38bdf8;
    margin-left: 8px;
}
.table-row .usd-value {
    font-weight: 600;
    color: #4ade80;
}

/* Genel tab ve buton stilleri (broadcasters ve diğer sayfalarda ortak kullanılıyorsa) */
.tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}
.tab-btn {
    flex: 1;
    padding: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    background-color: var(--icon-bg);
    border: 1px solid var(--glass-border);
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
}
.tab-btn.active {
    color: white;
    background-color: var(--accent-primary);
    border-color: var(--accent-primary);
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}
.tab-btn i {
    margin-right: 8px;
}

/* Genel arama kutusu stilleri */
.search-wrapper {
    position: relative;
    margin-bottom: 20px;
}
.search-icon {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: var(--text-secondary);
}
#search-input {
    width: 100%;
    background: rgba(0,0,0,0.2);
    border: 1px solid var(--glass-border);
    border-radius: 0.75rem;
    padding: 12px 12px 12px 45px;
    color: var(--text-primary);
    font-size: 14px;
}
#search-input:focus {
    outline: none;
    border-color: var(--accent-primary);
}

/* Genel yükleme butonu ve loader stilleri */
.load-more-wrapper {
    text-align: center;
    margin-top: 20px;
}
#load-more-btn {
    padding: 10px 30px;
    background-color: var(--accent-secondary);
    border: none;
    color: white;
    border-radius: 0.75rem;
    cursor: pointer;
    font-weight: 500;
}
.loader-wrapper {
    text-align: center;
    padding: 20px;
}
.loader {
    border: 4px solid var(--icon-bg);
    border-top: 4px solid var(--accent-primary);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.error-msg {
    text-align: center;
    color: var(--text-secondary);
    padding: 20px;
}
.status-message {
    text-align: center;
    padding: 2rem;
    color: #c0c0e0;
}

/* Genel istatistik kartları (Gelir, Yayıncı Verileri gibi sayfalarda ortak kullanılıyorsa) */
.stats-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-bottom: 15px;
}
.stat-card {
    background: var(--icon-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}
.stat-header {
    display: flex;
    align-items: center;
    gap: 10px;
}
.stat-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 18px;
}
.stat-icon.diamond {
    background: linear-gradient(135deg, #7dd3fc, #38bdf8);
    color: #f0f9ff;
}
.stat-icon.voice-earning {
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(167, 139, 250, 0.4);
    color: #d1c4e9;
    font-size: 16px;
}
.stat-icon.video-earning {
    background: rgba(236, 72, 153, 0.2);
    border: 1px solid rgba(244, 114, 182, 0.4);
    color: #fbcfe8;
    font-size: 16px;
}
.stat-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
}
.stat-value {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.1;
    width: 100%;
}
.sec-stat-item {
    display: flex;
    align-items: center;
    gap: 5px;
}
.sec-stat-item .stat-icon {
    font-size: 18px;
    color: var(--text-secondary);
}
.sec-stat-item .stat-count {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}
.sec-stat-item .stat-icon.green-icon {
    color: #2ecc71;
    text-shadow: 0 0 8px rgba(46, 204, 113, 0.5);
}
.stats-container {
    margin-bottom: 25px;
}
.summary-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

/* Genel filtreleme ve tarih seçici stilleri */
.filter-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: nowrap;
}
.date-mode-switcher {
    display: flex;
    align-items: center;
    background-color: var(--icon-bg);
    border: 1px solid var(--glass-border);
    border-radius: 0.75rem;
    padding: 4px;
    flex-shrink: 0;
}
.mode-btn {
    border: none;
    background-color: transparent;
    color: var(--text-secondary);
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.mode-btn.active {
    background-color: var(--accent-primary);
    color: white;
    box-shadow: 0 2px 10px rgba(236, 72, 153, 0.3);
}
.date-selector-wrapper {
    position: relative;
    flex-grow: 1;
    min-width: 150px;
}
.date-selector {
    width: 100%;
    background: var(--icon-bg);
    border: 1px solid var(--glass-border);
    border-radius: 0.75rem;
    padding: 9px 12px 9px 38px;
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 500;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}
.date-selector:focus {
    outline: none;
    border-color: var(--accent-secondary);
}
.selector-icon {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: var(--text-secondary);
    pointer-events: none;
}
.date-selector::-ms-expand {
    display: none;
}
select.date-selector option {
    background-color: var(--bg-gradient-3);
    color: var(--text-primary);
}
.period-summary-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 1.25rem;
    padding: 10px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.period-summary-card .summary-item {
    display: flex;
    align-items: center;
    gap: 5px;
    min-width: 0;
}
.period-summary-card .summary-item:first-child {
    flex: 2.5;
}
.period-summary-card .summary-item:not(:first-child) {
    flex: 1.5;
}
.period-summary-card .stat-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    font-size: 14px;
}
.period-summary-card .summary-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.period-summary-card .summary-label {
    font-size: 9px;
    color: var(--text-secondary);
    font-weight: 900;
    white-space: normal;
    line-height: 1.2;
}
.period-summary-card .summary-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.summary-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 1;
    min-width: 0;
}
.summary-item .stat-icon {
    flex-shrink: 0;
}
.summary-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.summary-label {
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 500;
    white-space: nowrap;
}
.summary-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Alt navigasyon butonları (login.php'de de kullanılıyor) */
@keyframes animate-gradient-text {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.nav-button-premium {
    flex: 2;
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(45deg, #8A2BE2, #C71585, #FF4500);
    background-size: 200% 200%;
    color: white;
    font-weight: bold;
    font-size: 15px;
    padding: 10px 15px;
    margin: 0 8px;
    border-radius: 12px;
    border: none;
    box-shadow: 0 5px 15px rgba(160, 60, 200, 0.4);
    text-decoration: none;
    transition: all 0.4s ease-in-out;
}
.nav-button-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(160, 60, 200, 0.6);
    background-position: 100% 0;
}
.nav-button-premium:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(160, 60, 200, 0.4);
}
.nav-button-animated-text {
    flex: 2;
    padding: 8px 25px;
    border-radius: 50px;
    background: rgba(30, 30, 40, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-sizing: border-box;
}
.nav-button-animated-text span {
    font-weight: bold;
    font-size: 15px;
    background: linear-gradient(90deg, #f72585, #b5179e, #7209b7, #4cc9f0, #f72585);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 250% auto;
    animation: animate-gradient-text 5s linear infinite;
}
.nav-button-animated-text i {
    color: #e0e0e0;
    transition: color 0.3s ease;
}
.nav-button-animated-text:hover {
    background: rgba(45, 45, 60, 0.8);
    border-color: rgba(76, 201, 240, 0.5);
    box-shadow: 0 0 15px rgba(76, 201, 240, 0.2);
}
