@font-face {
    font-family: 'SatoshiBold';
    src: url('../assets/fonts/SatoshiBold.woff2') format('woff2'),
         url('../assets/fonts/SatoshiBold.woff') format('woff'),
         url('../assets/fonts/SatoshiBold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'SatoshiBold', sans-serif;
    background-color: #ffffff;
    color: #333;
}

/* Wallet Page Styles */
.wallet-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.wallet-box {
    background: linear-gradient(135deg, #9dec3d 0%, #8dd935 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(157, 236, 61, 0.3);
    color: #333;
}

.wallet-title {
    font-size: 18px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.wallet-balance {
    font-size: 48px;
    margin-bottom: 10px;
}

.wallet-subtitle {
    font-size: 14px;
    opacity: 0.8;
}

.transaction-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.transaction-title {
    font-size: 22px;
    margin-bottom: 30px;
    color: #333;
}

.transaction-form .form-group {
    margin-bottom: 25px;
}

.transaction-form label {
    display: block;
    margin-bottom: 10px;
    color: #555;
    font-size: 14px;
}

.transaction-form input {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'SatoshiBold', sans-serif;
}

.transaction-form input:focus {
    outline: none;
    border-color: #9dec3d;
}

.transaction-form input:disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

.form-group input[readonly] {
    background-color: #f5f5f5;
    cursor: not-allowed;
    opacity: 0.7;
}

.url-option-group input[readonly] {
    background-color: #f5f5f5;
    cursor: not-allowed;
    opacity: 0.7;
}

.url-option-group input[type="checkbox"]:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.btn-withdraw {
    width: 100%;
    padding: 16px;
    background-color: #9dec3d;
    color: #333;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'SatoshiBold', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-withdraw:hover {
    background-color: #8dd935;
    transform: translateY(-2px);
}

.btn-withdraw:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
}

.min-amount-note {
    font-size: 13px;
    color: #666;
    margin-top: 8px;
}

.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.auth-box {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 450px;
}

.auth-logo {
    text-align: center;
    margin-bottom: 30px;
    display: block;
}

.auth-logo img {
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.auth-title {
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'SatoshiBold', sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #9dec3d;
}

.btn-primary {
    width: 100%;
    padding: 16px;
    background-color: #9dec3d;
    color: #333;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'SatoshiBold', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    margin-top: 10px;
}

.btn-primary:hover {
    background-color: #8dd935;
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: translateY(0);
}

.auth-link {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

.auth-link a {
    color: #9dec3d;
    text-decoration: none;
    font-weight: bold;
}

.auth-link a:hover {
    text-decoration: underline;
}

/* Agreement Checkboxes */
.agreement-group {
    margin-bottom: 15px;
}

.agreement-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
}

.agreement-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-right: 10px;
    cursor: pointer;
    accent-color: #9dec3d;
}

.agreement-text {
    color: #333;
    line-height: 1.5;
}

.agreement-link {
    color: #9dec3d;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.agreement-link:hover {
    text-decoration: underline;
    color: #8dd935;
}

/* Agreement Modal */
.agreement-modal-content {
    max-width: 700px;
    max-height: 80vh;
}

.agreement-content {
    line-height: 1.8;
    color: #333;
    font-size: 15px;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.modal-body {
    max-height: 60vh;
    overflow-y: auto;
    padding: 20px 0;
}

/* Animation Modal */
.animation-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.animation-modal.active {
    display: flex;
}

.animation-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.animation-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
}

.animation-icon.success {
    background-color: #9dec3d;
    color: white;
    animation: scaleIn 0.5s ease-out;
}

.animation-icon.error {
    background-color: #ff4444;
    color: white;
    animation: shake 0.5s ease-out;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-10px);
    }
    75% {
        transform: translateX(10px);
    }
}

.animation-message {
    font-size: 18px;
    color: #333;
    margin-top: 10px;
}

/* Dashboard Styles */
.dashboard-container {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 280px;
    background-color: #ffffff;
    border-right: 2px solid #f0f0f0;
    padding: 30px 0;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
}

.sidebar-logo {
    padding: 0 30px 30px;
    text-align: center;
    border-bottom: 2px solid #f0f0f0;
}

.sidebar-logo img {
    max-width: 180px;
    height: auto;
    max-height: 60px;
    object-fit: contain;
}

.sidebar-menu {
    list-style: none;
    padding: 20px 0;
}

.sidebar-menu li {
    margin-bottom: 5px;
}

.sidebar-menu a {
    display: block;
    padding: 15px 30px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 16px;
    border-radius: 10px;
    margin: 0 10px;
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
    background-color: #9dec3d;
    color: #333;
    border-right: 4px solid #8dd935;
    border-radius: 10px 0 0 10px;
}

/* Logout button styling */
.sidebar-menu a[href="logout.php"] {
    background-color: rgba(244, 67, 54, 0.1);
    color: #f44336;
}

.sidebar-menu a[href="logout.php"]:hover {
    background-color: rgba(244, 67, 54, 0.2);
    color: #d32f2f;
    border-right: 4px solid #f44336;
}

.main-content {
    margin-left: 280px;
    flex: 1;
    padding: 40px;
    background-color: #fafafa;
}

.page-title {
    font-size: 32px;
    margin-bottom: 30px;
    color: #333;
}

/* Stats Boxes */
.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.stat-value {
    font-size: 36px;
    color: #9dec3d;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: #666;
}

/* Chart Container */
.chart-container {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.chart-title {
    font-size: 20px;
    color: #333;
}

.year-selector {
    padding: 8px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'SatoshiBold', sans-serif;
    cursor: pointer;
}

/* Release Form Styles */
.release-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    max-width: 1200px;
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.form-section:last-child {
    border-bottom: none;
}

.form-section-title {
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.platform-checkbox {
    display: flex;
    align-items: center;
}

.platform-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    cursor: pointer;
    accent-color: #9dec3d !important;
    filter: hue-rotate(0deg);
}

.platform-checkbox input[type="checkbox"]:checked {
    accent-color: #9dec3d !important;
    background-color: #9dec3d;
}

.platform-checkbox label {
    cursor: pointer;
    font-size: 14px;
    color: #555;
}

.radio-group {
    display: flex;
    gap: 30px;
}

.radio-option {
    display: flex;
    align-items: center;
}

.radio-option input[type="radio"] {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    cursor: pointer;
    accent-color: #9dec3d !important;
}

.radio-option label {
    cursor: pointer;
    font-size: 15px;
    color: #555;
}

.track-section {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.track-section-header {
    font-size: 18px;
    margin-bottom: 20px;
    color: #9dec3d;
    font-weight: bold;
}

.url-option-group {
    display: flex;
    gap: 15px;
    align-items: center;
}

.url-option-group input[type="text"] {
    flex: 1;
}

.url-option-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

.url-option-group label {
    font-size: 14px;
    white-space: nowrap;
}

.info-text {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
    line-height: 1.5;
}

.image-upload-container {
    border: 3px dashed #e0e0e0;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.image-upload-container:hover {
    border-color: #9dec3d;
    background-color: #f9f9f9;
}

.image-upload-container.has-image {
    border-style: solid;
    border-color: #9dec3d;
}

.upload-icon {
    font-size: 48px;
    color: #9dec3d;
    margin-bottom: 15px;
}

.upload-text {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.image-preview {
    max-width: 300px;
    max-height: 300px;
    margin: 20px auto;
    border-radius: 10px;
}

/* File Upload Container */
.file-upload-container {
    border: 3px dashed #e0e0e0;
    border-radius: 15px;
    padding: 60px 40px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    background: white;
    position: relative;
}

.file-upload-container:hover {
    border-color: #9dec3d;
    background-color: #f9f9f9;
}

.file-upload-container.has-file {
    border-style: solid;
    border-color: #9dec3d;
    background-color: #f0fce5;
}

.file-upload-container .upload-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.file-upload-container .upload-text {
    font-size: 16px;
    color: #666;
}

.file-preview-image {
    max-width: 300px;
    max-height: 300px;
    margin: 20px auto;
    border-radius: 10px;
    display: block;
}

.upload-progress {
    margin-top: 12px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #9dec3d 0%, #8dd935 100%);
    width: 0%;
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 12px;
    color: #666;
    text-align: center;
}

.upload-filename {
    margin-top: 10px;
    font-size: 13px;
    color: #4caf50;
    text-align: center;
    word-break: break-all;
    padding: 8px;
    background: #e8f9e8;
    border-radius: 6px;
}


.btn-submit {
    width: 100%;
    max-width: 400px;
    padding: 18px;
    background-color: #9dec3d;
    color: #333;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-family: 'SatoshiBold', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    margin: 30px auto 0;
    display: block;
}

.btn-submit:hover {
    background-color: #8dd935;
    transform: translateY(-2px);
}

.btn-submit:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Subscription Boxes */
.subscription-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.subscription-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 3px solid #f0f0f0;
    transition: all 0.3s;
}

.subscription-box:hover {
    border-color: #9dec3d;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(157, 236, 61, 0.2);
}

.subscription-name {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

.subscription-price {
    font-size: 42px;
    color: #9dec3d;
    margin-bottom: 30px;
}

.subscription-features {
    list-style: none;
    margin-bottom: 30px;
}

.subscription-features li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
    color: #555;
}

.subscription-features li:before {
    content: "✓";
    color: #9dec3d;
    font-weight: bold;
    margin-right: 10px;
}

.btn-subscribe {
    width: 100%;
    padding: 16px;
    background-color: #9dec3d;
    color: #333;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'SatoshiBold', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-subscribe:hover {
    background-color: #8dd935;
    transform: translateY(-2px);
}

.btn-subscribe:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Releases Grid */
.releases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.release-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.release-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.release-cover {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.release-info {
    padding: 20px;
}

.release-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.release-artist {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.release-status {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 15px;
}

.release-status.beklemede {
    background-color: #ffa500;
    color: white;
}

.release-status.inceleniyor {
    background-color: #9c27b0;
    color: white;
}

.release-status.gonderildi {
    background-color: #9dec3d;
    color: #333;
}

.release-status.yayinlandi {
    background-color: #7bc42d;
    color: white;
}

.release-status.reddedildi {
    background-color: #ff4444;
    color: white;
}

.rejection-reason {
    margin-top: 12px;
    padding: 12px;
    background-color: #ffebee;
    border-left: 4px solid #ff4444;
    border-radius: 6px;
    font-size: 13px;
    color: #c62828;
    line-height: 1.5;
}

.rejection-reason strong {
    color: #b71c1c;
    display: block;
    margin-bottom: 6px;
}

.release-actions {
    display: flex;
    gap: 10px;
}

.btn-edit, .btn-delete {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 8px;
    font-family: 'SatoshiBold', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-edit {
    background-color: #9dec3d;
    color: #333;
}

.btn-edit:hover {
    background-color: #8dd935;
}

.btn-delete {
    background-color: #ff4444;
    color: white;
}

.btn-delete:hover {
    background-color: #cc0000;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.modal-title {
    font-size: 24px;
    color: #333;
}

.modal-close {
    font-size: 30px;
    cursor: pointer;
    color: #666;
    background: none;
    border: none;
}

.modal-close:hover {
    color: #333;
}

.no-subscription-message {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    margin-top: 20px;
}

.no-subscription-message h2 {
    font-size: 24px;
    color: #856404;
    margin-bottom: 15px;
}

.no-subscription-message p {
    font-size: 16px;
    color: #856404;
    margin-bottom: 20px;
}

.no-subscription-message a {
    display: inline-block;
    padding: 14px 30px;
    background-color: #9dec3d;
    color: #333;
    text-decoration: none;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s;
}

.no-subscription-message a:hover {
    background-color: #8dd935;
    transform: translateY(-2px);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
    background-color: #9dec3d;
    border: none;
    border-radius: 8px;
    padding: 12px 15px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.mobile-menu-toggle:hover {
    background-color: #8dd935;
    transform: scale(1.05);
}

.mobile-menu-toggle i {
    font-size: 20px;
    color: #333;
}

/* Overlay for mobile menu */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.sidebar-overlay.active {
    display: block;
}

/* Responsive */
@media (max-width: 1200px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .subscription-container {
        grid-template-columns: 1fr;
    }
    
    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .releases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .sidebar {
        position: fixed;
        left: -280px;
        top: 0;
        height: 100vh;
        z-index: 1000;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }
    
    .sidebar.active {
        left: 0;
    }
    
    .main-content {
        margin-left: 0;
        padding: 80px 20px 20px;
    }
    
    .page-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-box {
        padding: 20px;
    }
    
    .stat-value {
        font-size: 28px;
    }
    
    .wallet-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .wallet-box,
    .transaction-box {
        padding: 25px;
    }
    
    .wallet-balance {
        font-size: 36px;
    }
    
    .platform-grid {
        grid-template-columns: 1fr;
    }
    
    .releases-grid {
        grid-template-columns: 1fr;
    }
    
    .release-form {
        padding: 25px;
    }
    
    .form-section {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }
    
    .chart-container {
        padding: 20px;
    }
    
    .auth-box {
        padding: 30px;
        margin: 20px;
    }
    
    .subscription-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .subscription-box {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 70px 15px 15px;
    }
    
    .page-title {
        font-size: 20px;
    }
    
    .stat-value {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .wallet-box,
    .transaction-box {
        padding: 20px;
    }
    
    /* Track Count Grid */
    .track-count-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 15px;
        margin-top: 20px;
    }
    
    .track-count-card {
        background: white;
        border: 2px solid #e0e0e0;
        border-radius: 12px;
        padding: 20px;
        text-align: center;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .track-count-card:hover {
        border-color: #9dec3d;
        transform: translateY(-3px);
        box-shadow: 0 4px 12px rgba(157, 236, 61, 0.2);
    }
    
    .track-count-card.active {
        background: linear-gradient(135deg, #9dec3d 0%, #8dd935 100%);
        border-color: #9dec3d;
        box-shadow: 0 4px 12px rgba(157, 236, 61, 0.3);
    }
    
    .track-count-number {
        font-size: 32px;
        font-weight: bold;
        color: #333;
        margin-bottom: 5px;
    }
    
    .track-count-card.active .track-count-number {
        color: #fff;
    }
    
    .track-count-label {
        font-size: 14px;
        color: #666;
    }
    
    .track-count-card.active .track-count-label {
        color: #fff;
    }
    
    @media (max-width: 768px) {
        .track-count-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
        }
        
        .track-count-card {
            padding: 15px;
        }
        
        .track-count-number {
            font-size: 24px;
        }
    }
    
    @media (max-width: 480px) {
        .track-count-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    .wallet-title {
        font-size: 16px;
    }
    
    .wallet-balance {
        font-size: 32px;
    }
    
    .release-form {
        padding: 20px;
    }
    
    .form-section-title {
        font-size: 18px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 14px;
    }
    
    .btn-submit {
        padding: 14px;
        font-size: 16px;
    }
    
    .subscription-name {
        font-size: 24px;
    }
    
    .subscription-price {
        font-size: 36px;
    }
    
    .subscription-features li {
        font-size: 14px;
        padding: 10px 0;
    }
    
    .auth-box {
        padding: 25px;
    }
    
    .auth-title {
        font-size: 24px;
    }
    
    .modal-content {
        width: 95%;
        padding: 25px;
    }
    
    .modal-title {
        font-size: 20px;
    }
}

/* Notification Popup Styles */
.notification-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.notification-popup-content {
    background-color: #9dec3d;
    color: #000000;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.notification-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #000000;
    transition: all 0.3s ease;
}

.notification-popup-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}

.notification-popup-title {
    font-size: 24px;
    margin-bottom: 20px;
    margin-top: 10px;
    font-weight: bold;
    color: #000000;
}

.notification-popup-message {
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
    font-family: 'SatoshiBold', sans-serif;
}

@media (max-width: 768px) {
    .notification-popup-content {
        padding: 30px;
        max-width: 90%;
    }
    
    .notification-popup-title {
        font-size: 20px;
    }
    
    .notification-popup-message {
        font-size: 14px;
    }
}
