.shine-membership-container {
    max-width: 1200px;
    margin: 40px auto;
}

/* Pricing Table */
.shine-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.shine-plan-card {
    background: #FEFCE8; /* Pastel Yellow */
    border: 3px solid #000;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 4px 4px 0px #000 !important;
    transition: all 0.2s ease-in-out;
    position: relative;
}

.shine-plan-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0px #000 !important;
}

/* Plan Popular (1-Year) Highlight */
.shine-plan-card.shine-plan-popular {
    background: #EFF6FF; /* Soft Blue */
    border: 3px solid #2563EB;
    box-shadow: 4px 4px 0px #2563EB !important;
    z-index: 2;
}
.shine-plan-card.shine-plan-popular:hover {
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0px #2563EB !important;
}

/* Plan Lifetime Highlight */
.shine-plan-card.shine-plan-lifetime {
    background: #ECFDF5; /* Soft Emerald */
    border: 3px solid #059669;
    box-shadow: 4px 4px 0px #059669 !important;
}
.shine-plan-card.shine-plan-lifetime:hover {
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0px #059669 !important;
}

.shine-popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #2563EB;
    color: #fff;
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: 100px;
    border: 2px solid #000;
    box-shadow: 2px 2px 0px #000;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.shine-plan-card h3 {
    font-size: 24px;
    font-weight: 900;
    margin-top: 10px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.shine-plan-duration {
    font-size: 13px;
    font-weight: 800;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.shine-plan-price {
    font-size: 32px;
    font-weight: 900;
    color: #000;
    margin-bottom: 25px;
    white-space: nowrap;
}
.shine-plan-price span {
    color: #EF4444;
}
.shine-plan-price small {
    font-size: 18px;
    color: #4B5563;
    font-weight: 700;
}

.shine-plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
    border-top: 2px dashed #E5E7EB;
    padding-top: 20px;
}

.shine-plan-features li {
    padding: 10px 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #1F2937;
}

/* Auto green checkmark icon */
.shine-plan-features li:before,
ul.shine-plan-features li:before,
.shine-membership-container ul.shine-plan-features li:before,
body .shine-plan-features li:before {
    content: "✓" !important;
    display: inline-block !important;
    margin-right: 10px !important;
    color: #10B981 !important;
    font-weight: 900 !important;
}

/* Override checkmark to red crossmark for disabled features */
.shine-plan-features li.shine-feature-cross:before,
ul.shine-plan-features li.shine-feature-cross:before,
.shine-membership-container ul.shine-plan-features li.shine-feature-cross:before,
body .shine-plan-features li.shine-feature-cross:before {
    content: "✖" !important;
    color: #EF4444 !important;
    display: inline-block !important;
}

.shine-plan-features li.shine-feature-disabled,
ul.shine-plan-features li.shine-feature-disabled,
.shine-membership-container ul.shine-plan-features li.shine-feature-disabled,
body .shine-plan-features li.shine-feature-disabled {
    opacity: 0.6 !important;
    text-decoration: line-through !important;
    color: #9CA3AF !important;
}

.shine-plan-button {
    display: block;
    background: #000;
    color: #fff;
    padding: 14px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    transition: all 0.2s ease;
    border: 2px solid #000;
    box-shadow: 3px 3px 0px #000;
    text-align: center;
}

.shine-plan-button:hover {
    background: #fff;
    color: #000;
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0px #000;
}

.shine-plan-card.shine-plan-popular .shine-plan-button {
    background: #2563EB;
    border-color: #000;
    box-shadow: 3px 3px 0px #000;
}
.shine-plan-card.shine-plan-popular .shine-plan-button:hover {
    background: #fff;
    color: #2563EB;
    box-shadow: 5px 5px 0px #000;
}

.shine-plan-card.shine-plan-lifetime .shine-plan-button {
    background: #059669;
    border-color: #000;
    box-shadow: 3px 3px 0px #000;
}
.shine-plan-card.shine-plan-lifetime .shine-plan-button:hover {
    background: #fff;
    color: #059669;
    box-shadow: 5px 5px 0px #000;
}

/* Forms (Login/Register) */
.shine-form-card {
    max-width: 450px;
    margin: 0 auto;
    background: #fff;
    border: 2px solid #000;
    border-radius: 12px;
    padding: 40px;
    box-shadow: none !important;
}

.shine-form-card h2 {
    font-weight: 900;
    margin-bottom: 25px;
    text-align: center;
}

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

.shine-form-group label {
    display: block;
    font-weight: 800;
    margin-bottom: 8px;
}

.shine-form-group input {
    width: 100%;
    padding: 15px 25px;
    border: 3px solid #000;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    box-sizing: border-box;
    background: #fff;
    transition: all 0.2s;
}

#shine-download-search {
    width: 100%;
    padding: 15px 20px;
    padding-left: 50px; /* Space for icon */
    border: 3px solid #000;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    box-sizing: border-box;
    background: #fff;
    transition: all 0.2s;
}

#shine-download-search:focus {
    outline: none;
    background: #f8fafc;
    box-shadow: 4px 4px 0 #000;
}

.shine-search-wrap .search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #000;
    pointer-events: none;
    z-index: 5;
}

.shine-form-submit {
    width: 100%;
    background: #3B82F6; /* Blue */
    color: #fff;
    border: 2px solid #000;
    border-radius: 8px;
    padding: 15px;
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: none !important;
}

.shine-form-submit:hover {
    transform: translate(-2px, -2px);
    box-shadow: none !important;
}

/* Dashboard & General */
.shine-dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
}

.shine-dashboard-card {
    background: #fff;
    border: 2px solid #000;
    border-radius: 12px;
    padding: 30px;
    box-shadow: none !important;
}

.shine-status-badge {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 900;
    border: 2px solid #000;
}

.shine-status-badge.active { background: #D1FAE5; color: #065F46; }
.shine-status-badge.inactive { background: #FEE2E2; color: #991B1B; }

.shine-history-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.shine-history-table th, .shine-history-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.shine-status-text.pending { color: orange; font-weight: 700; }
.shine-status-text.approved { color: green; font-weight: 700; }
.shine-status-text.rejected { color: red; font-weight: 700; }

/* Checkout Advanced */
.shine-checkout-card {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
}

.shine-checkout-header h2 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 25px;
}

.shine-order-summary {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.shine-summary-item {
    flex: 1;
    background: #fff;
    border: 2px solid #000;
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    box-shadow: none !important;
}

.shine-summary-item .shine-label {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 800;
    color: #6B7280;
    letter-spacing: 0.5px;
}

.shine-summary-item .shine-value {
    font-size: 22px;
    font-weight: 900;
    color: #000;
}

.shine-final-price { color: #EF4444 !important; }

.shine-payment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.shine-payment-box {
    border: 2px solid #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: none !important;
    background: #fff;
}

.shine-box-header {
    background: #000;
    color: #fff;
    padding: 15px 20px;
}

.shine-box-header h3 { margin: 0; font-size: 18px; color: #fff; font-weight: 900; }

.shine-box-body { padding: 25px; }

.shine-copy-row-advanced {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #F9FAFB;
    border: 2px solid #E5E7EB;
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 15px;
    transition: border-color 0.2s;
}

.shine-copy-row-advanced:hover { border-color: #000; }

.shine-line-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

.shine-line-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.shine-line-label {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 800;
    color: #6B7280;
}

.shine-line-value {
    font-size: 15px;
    font-weight: 900;
    color: #000;
    word-break: break-all;
}

.shine-copy-btn {
    background: #3B82F6;
    color: #fff;
    border: 2px solid #000;
    padding: 6px 15px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: none !important;
}

.shine-copy-btn:active { transform: translate(1px, 1px); box-shadow: none !important; }

.shine-qr-wrapper {
    text-align: center;
    margin-top: 20px;
    border-top: 2px dashed #eee;
    padding-top: 20px;
}

.shine-qr-img { max-width: 180px; border: 2px solid #000; padding: 10px; background: #fff; }

.shine-upload-section {
    border-top: 2px dashed #000;
    padding-top: 30px;
}

.shine-checkout-flex { display: flex; gap: 20px; }
.shine-checkout-flex .shine-form-group { flex: 1; }

.shine-btn-secondary {
    background: #fff;
    color: #000;
    border: 2px solid #000;
    padding: 0 20px;
    border-radius: 8px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: none !important;
}

/* Custom Notification */
.shine-notif-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}
.shine-notif-box {
    background: #fff;
    border: 4px solid #000;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: none !important;
    animation: shineBounceIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.shine-notif-box h4 { margin: 0 0 15px 0; font-size: 24px; font-weight: 900; text-transform: uppercase; }
.shine-notif-box p { font-weight: 600; margin-bottom: 20px; font-size: 16px; }
.shine-notif-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 30px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
}
@keyframes shineBounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 768px) {
    .shine-dashboard-grid, .shine-payment-grid, .shine-checkout-flex, .shine-order-summary {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
}/* --- ULTIMATE DARK MODE FIX (CLEAN & POWERFUL) --- */

/* Targets: System Preferences + Common Theme Toggle Classes */
@media (prefers-color-scheme: dark) {
    body:not(.light-mode) .shine-membership-container,
    body:not(.light-mode) .shine-plan-card,
    body:not(.light-mode) .shine-form-card,
    body:not(.light-mode) .shine-dashboard-card,
    body:not(.light-mode) .shine-checkout-card,
    body:not(.light-mode) .shine-payment-box,
    body:not(.light-mode) .shine-summary-item {
        background-color: #1a1a1a !important;
        color: #ffffff !important;
        border-color: #ffffff !important;
        box-shadow: none !important;
    }
}

/* Explicit Toggle Classes (.dark, .dark-mode, .is-dark-theme, [data-theme="dark"]) */
html.dark [class*="shine-"], 
html.dark-mode [class*="shine-"], 
html.is-dark-theme [class*="shine-"],
[data-theme="dark"] [class*="shine-"],
html.dark-mode .shine-plan-card,
html.dark-mode .shine-form-card,
html.dark-mode .shine-dashboard-card,
html.dark-mode .shine-checkout-card,
html.dark-mode .shine-payment-box,
html.dark-mode .shine-summary-item {
    background-color: #1a1a1a !important;
    color: #ffffff !important;
    border-color: #444444 !important;
    box-shadow: none !important;
}

/* Fix for all inner elements (headings, text, labels, list items) */
html.dark-mode [class*="shine-"] h1, html.dark-mode [class*="shine-"] h2, html.dark-mode [class*="shine-"] h3,
html.dark-mode [class*="shine-"] p, html.dark-mode [class*="shine-"] li, html.dark-mode [class*="shine-"] label,
html.dark-mode [class*="shine-"] span, html.dark-mode [class*="shine-"] div {
    color: #ffffff !important;
}

/* Input Fields in Dark Mode */
html.dark-mode [class*="shine-"] input, 
html.dark-mode [class*="shine-"] textarea,
html.dark-mode .shine-copy-row-advanced {
    background-color: #2d2d2d !important;
    border-color: #555555 !important;
    color: #ffffff !important;
}

/* Buttons in Dark Mode (High Contrast) */
html.dark-mode .shine-plan-button, 
html.dark-mode .shine-form-submit,
html.dark-mode .shine-copy-btn {
    background-color: #ffffff !important;
    color: #000000 !important;
    border-color: #000000 !important;
    box-shadow: none !important;
}

/* Hero Section and Banner Adaptation */
html.dark-mode .hero, 
html.dark-mode .banner-hero, 
html.dark-mode .wp-block-cover,
html.dark-mode .hero-section {
    background-color: #000000 !important;
    color: #ffffff !important;
}

/* History Table Adaptation */
html.dark-mode .shine-history-table th, 
html.dark-mode .shine-history-table td {
    border-color: #444444 !important;
    color: #ffffff !important;
}

/* Specific Fix for Login/Register Form Card which might be wrapped in theme content */
html.dark-mode .entry-content .shine-form-card,
html.dark-mode .entry-content .shine-membership-container {
    background-color: #1a1a1a !important;
    color: #ffffff !important;
}

/* Checkout and Homepage Hero/Stats Fix */
html.dark-mode .shine-checkout-card,
html.dark-mode .groovy-homepage-hero,
html.dark-mode .groovy-stat-card {
    background-color: #1a1a1a !important;
    color: #ffffff !important;
    border: 2px solid #444444 !important;
    box-shadow: none !important;
}

html.dark-mode .shine-checkout-card h2,
html.dark-mode .shine-checkout-card .shine-value,
html.dark-mode .shine-checkout-card .shine-line-value,
html.dark-mode .shine-checkout-card p,
html.dark-mode .shine-checkout-card label,
html.dark-mode .groovy-stat-card .groovy-stat-number {
    color: #ffffff !important;
}

/* Top Plan Box at Checkout */
.shine-top-plan-box {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    background: #FFF !important;
    border: 3px solid #000 !important;
    padding: 20px 30px !important;
    box-shadow: none !important;
    margin-bottom: 25px !important;
    border-radius: 12px !important;
}
.shine-plan-name-big {
    font-size: 28px !important;
    font-weight: 900 !important;
    color: #3B82F6 !important; /* Brand Blue */
    text-transform: uppercase;
    display: block;
}
.shine-plan-days {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #000 !important;
    display: block;
}
.shine-plan-main-info, .shine-plan-validity-info { display: flex; flex-direction: column; }
.shine-plan-validity-info { text-align: right; }

/* Dual Price Checkout */
.shine-checkout-dual-price {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}
.shine-checkout-dual-price .shine-summary-item {
    flex-direction: column !important;
    padding: 20px !important;
    border: 3px solid #000 !important;
    text-align: center !important;
    border-radius: 12px !important;
}
.shine-price-box-inr { background: #DCFCE7 !important; box-shadow: none !important; }
.shine-price-box-usd { background: #DBEAFE !important; box-shadow: none !important; }

.shine-final-price-inr, .shine-final-price-usd {
    font-size: 32px !important;
    font-weight: 900 !important;
    color: #000 !important;
    margin-top: 5px !important;
}
.shine-plan-info-row { display: flex; justify-content: space-between; align-items: center; border-top: 1px dashed #ddd; padding-top: 10px; }

@media (max-width: 600px) {
    .shine-checkout-dual-price { grid-template-columns: 1fr; }
}

/* New 50/25/25 Checkout Header */
.shine-checkout-header-new {
    display: grid !important;
    grid-template-columns: 2fr 1fr 1fr !important;
    gap: 15px !important;
    margin-bottom: 25px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}
.shine-top-plan-box-new {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    background: #FFF !important;
    border: 3px solid #000 !important;
    border-radius: 12px !important;
    padding: 20px 30px !important;
    margin: 0 !important;
}
.shine-price-box-inr-new {
    background: #DCFCE7 !important;
    border: 3px solid #000 !important;
    border-radius: 12px !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    margin: 0 !important;
}
.shine-price-box-usd-new {
    background: #DBEAFE !important;
    border: 3px solid #000 !important;
    border-radius: 12px !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    margin: 0 !important;
}

@media (max-width: 600px) {
    .shine-checkout-header-new {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }
    .shine-top-plan-box-new {
        grid-column: span 2 !important;
        padding: 15px !important;
    }
    .shine-plan-name-big { font-size: 22px !important; }
    .shine-plan-days { font-size: 14px !important; }
    .shine-final-price-inr, .shine-final-price-usd { font-size: 20px !important; }
}

/* Compact 2-Column Checkout Layout */
.shine-checkout-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 25px;
    margin-top: 20px;
}
.shine-payment-box-new {
    background: #fff;
    border: 3px solid #000;
    border-radius: 15px;
    overflow: hidden;
}
.shine-qr-wrapper-new {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #eee;
}
.shine-qr-hint {
    font-weight: 900;
    margin-top: 10px;
    font-size: 14px;
    color: #000;
}
.shine-payment-footer-hint {
    font-weight: 900;
    margin-top: 15px;
    border-top: 1px dashed #ddd;
    padding-top: 15px;
    font-size: 12px;
    color: #666;
    text-align: center;
}
.shine-form-card-inner {
    background: #fff;
    border: 3px solid #000;
    border-radius: 15px;
    padding: 20px;
}
.shine-file-input-wrapper input {
    width: 100%;
    padding: 10px;
    background: #f8fafc;
    border: 2px dashed #cbd5e1;
    border-radius: 8px;
    cursor: pointer;
}

/* Compact Payment Method Row (GPay/Binance) */
.shine-copy-row-compact {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #F9FAFB;
    border: 2px solid #E5E7EB;
    padding: 8px 12px;
    border-radius: 12px;
    transition: border-color 0.2s;
}
.shine-copy-row-compact:hover { border-color: #000; }
.shine-line-logo-small {
    width: 25px;
    height: 25px;
    object-fit: contain;
}
.shine-copy-btn-icon {
    background: #3B82F6;
    color: #fff;
    border: 2px solid #000;
    padding: 5px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 800;
    cursor: pointer;
}

@media (max-width: 600px) {
    .shine-payment-row-flex {
        flex-direction: column !important;
    }
}

@media (max-width: 900px) {
    .shine-checkout-main-grid {
        grid-template-columns: 1fr;
    }
}

/* Dashboard Tabs - Enhanced Specificity */
.shine-membership-container .shine-dashboard-tabs { 
    display: flex !important; 
    flex-wrap: wrap !important;
    gap: 12px !important; 
    margin-bottom: 35px !important; 
    border-bottom: 3px solid #000 !important; 
    padding-bottom: 15px !important; 
    justify-content: flex-start !important;
}

.shine-membership-container .shine-tab-btn { 
    background: rgb(254, 252, 232) !important; 
    color: #000 !important; 
    border: 3px solid #000 !important; 
    padding: 12px 24px !important; 
    font-size: 14px !important;
    font-weight: 800 !important; 
    text-transform: uppercase !important; 
    cursor: pointer !important; 
    border-radius: 100px !important; 
    transition: all 0.2s !important;
    white-space: nowrap !important;
    flex: 0 0 auto !important;
}

@media screen and (max-width: 600px) {
    div.shine-membership-container div.shine-dashboard-tabs {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 10px !important;
        display: flex !important;
    }
    div.shine-membership-container div.shine-dashboard-tabs button.shine-tab-btn {
        flex: 1 1 calc(50% - 15px) !important;
        min-width: 140px !important;
        padding: 10px !important;
        font-size: 11px !important;
        text-align: center !important;
        white-space: normal !important; /* Allow text to wrap inside button if needed */
        word-break: break-word !important;
    }
}

.shine-membership-container .shine-tab-btn:hover,
.shine-membership-container .shine-tab-btn.active { 
    background: #EF4444 !important; 
    color: #fff !important; 
}
.shine-tab-content { display: none; }
.shine-tab-content.active { display: block; }

/* Dashboard side-by-side 40/60 */
.shine-dashboard-flex-row { display: flex; gap: 30px; }
.shine-dashboard-col-40 { flex: 0 0 40%; }
.shine-dashboard-col-60 { flex: 0 0 calc(60% - 30px); }

/* Browser Header Layout */
.shine-browser-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
}
.shine-search-wrap {
    flex: 1; /* Take all available space */
    position: relative;
}
.shine-browser-filters {
    flex-shrink: 0; /* Don't shrink buttons */
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

/* Premium Downloads Table */
.shine-downloads-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 3px solid #000;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}
.shine-downloads-table th {
    background: #f1f5f9;
    border-bottom: 3px solid #000;
    padding: 15px 20px;
    text-align: left;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 12px;
}
.shine-downloads-table th:not(:last-child) { border-right: 2px solid #000; }

.shine-download-row td {
    padding: 15px 20px;
    border-bottom: 2px solid #000;
    font-weight: 700;
    color: #000;
}
.shine-download-row td:not(:last-child), .shine-downloads-table th:not(:last-child) { border-right: 2px solid #000; }

.shine-col-name { font-size: 14px; font-weight: 800; }
.shine-file-link {
    text-decoration: none;
    color: #000;
    transition: color 0.2s;
    display: block;
}
.shine-file-link:hover {
    color: #3B82F6; /* Link blue */
}
.shine-ver-pill {
    background: transparent;
    color: #000;
    border: none;
    padding: 0;
    font-size: 12px;
    font-weight: 900;
}
.shine-col-date { font-size: 12px; color: #64748b; }

/* Accordion Row */
.shine-accordion-row { display: none; background: #f8fafc; }
.shine-accordion-row td {
    padding: 0;
    border-bottom: 2px solid #000;
}
.shine-versions-expandable {
    padding: 25px;
    display: none;
}
.shine-versions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}
.shine-ver-row {
    background: #fff;
    border: 2px solid #000;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 900px) {
    .shine-browser-header { flex-direction: column; align-items: stretch; }
    .shine-search-wrap { flex: 0 0 100%; }
    .shine-browser-filters { justify-content: flex-start; }
    .shine-downloads-table, .shine-downloads-table thead, .shine-downloads-table tbody, .shine-downloads-table th, .shine-downloads-table td, .shine-downloads-table tr { 
        display: block; 
    }
    .shine-downloads-table thead { display: none; }
    .shine-download-row { margin-bottom: 15px; border: 3px solid #000; border-radius: 10px; }
    .shine-download-row td { border: none !important; border-bottom: 1px dashed #000 !important; }
}
.shine-versions-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 15px; }
.shine-ver-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 15px; background: #fff; border: 1px solid #000; border-radius: 8px; position: relative; }
.shine-ver-tag { font-weight: 900; font-size: 13px; }
.shine-ver-btns { display: flex; gap: 10px; }
.shine-ver-dl-btn { text-decoration: none; padding: 5px 12px; border-radius: 5px; color: #fff; font-weight: 800; font-size: 11px; border: 1px solid #000; transition: transform 0.1s; }
.shine-ver-dl-btn:active { transform: scale(0.95); }
.shine-ver-dl-btn.mega { background: #ea4335; }
.shine-ver-dl-btn.mediafire { background: #1a73e8; }

/* Removed NEW badge */

@media (max-width: 900px) {
    .shine-dashboard-flex-row { flex-direction: column; }
    .shine-browser-header { flex-direction: column; align-items: stretch; }
    .shine-download-item { flex-direction: column; align-items: flex-start; gap: 15px; }
}

/* Fixed Pagination */
.shine-pagination-wrap {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
    flex-wrap: wrap;
    padding: 20px;
}
.shine-page-num {
    min-width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #000;
    border-radius: 50%; /* Circular */
    font-weight: 900;
    cursor: pointer;
    background: #fff;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 14px;
}
.shine-page-num:hover:not(.active):not(.dots) {
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 #000;
}
.shine-page-num.active {
    background: #000;
    color: #fff;
    transform: none;
}
.shine-page-num.dots {
    border: none;
    cursor: default;
    background: transparent;
}

/* Pill Style Buttons */
.shine-filter-btn,
.shine-view-versions-btn,
.shine-plan-button,
.shine-tab-btn,
.shine-form-submit,
.shine-notif-btn,
.shine-copy-btn,
.shine-btn-secondary {
    border-radius: 100px !important;
}

/* Specific Filter Button Adjustments */
.shine-filter-btn {
    padding: 10px 25px;
    font-weight: 800;
    text-transform: uppercase;
    border: 2px solid #000;
    cursor: pointer;
    background: rgb(254, 252, 232);
    color: #000;
    transition: all 0.2s;
}
.shine-filter-btn:hover,
.shine-filter-btn.active {
    background: #EF4444 !important; /* Red */
    color: #fff !important;
}

/* View Versions Button */
.shine-view-versions-btn {
    background: #EF4444;
    color: #fff;
    border: 2px solid #000;
    padding: 10px 20px;
    font-weight: 800;
    font-size: 12px;
    transition: all 0.2s;
}
.shine-view-versions-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 #000;
}
.shine-loading {
    padding: 40px;
    text-align: center;
    font-weight: 800;
    color: #64748b;
    font-size: 18px;
    animation: shinePulse 1.5s infinite ease-in-out;
}

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

/* Professional Dashboard Enhancements */
.card-title-with-icon {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px !important;
    font-weight: 900;
    margin-bottom: 25px;
    color: #000;
}

.status-card {
    background: #fff;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.status-card:hover {
    transform: translateY(-5px);
    box-shadow: 6px 6px 0 #000 !important;
}

.status-pill-wrap {
    margin-bottom: 20px;
}

.shine-validity-box {
    background: #f8fafc;
    border: 2px solid #000;
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}
.shine-validity-box.lifetime { background: #ecfdf5; border-color: #10b981; }
.shine-validity-box.expired { background: #fef2f2; border-color: #ef4444; }

.validity-content { display: flex; flex-direction: column; }
.days-left { font-size: 18px; font-weight: 900; color: #000; }
.expiry-date { font-size: 13px; font-weight: 700; color: #64748b; margin-top: 4px; }
.validity-icon { font-size: 28px; opacity: 0.8; }

.upgrade-btn {
    background: #000 !important;
    color: #fff !important;
    text-align: center;
    padding: 14px !important;
    font-size: 14px !important;
    letter-spacing: 0.5px;
    transition: all 0.2s !important;
}
.upgrade-btn:hover {
    background: #EF4444 !important;
    transform: translate(-3px, -3px);
    box-shadow: 4px 4px 0 #000;
}

/* Table Refinements */
.shine-history-table th {
    background: #f1f5f9;
    color: #475569;
    font-size: 12px;
    letter-spacing: 0.5px;
    padding: 12px 20px;
}
.shine-history-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #e2e8f0;
    font-size: 14px;
    font-weight: 700;
}

.plan-tag {
    background: #f1f5f9;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    border: 1px solid #000;
}

.shine-status-pill {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 800;
    border: 1px solid transparent;
}
.shine-status-pill.approved { background: #dcfce7; color: #166534; border-color: #bbf7d0; }
.shine-status-pill.pending { background: #fef9c3; color: #854d0e; border-color: #fef08a; }
.shine-status-pill.rejected { background: #fee2e2; color: #991b1b; border-color: #fecaca; }


.shine-tab-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px !important;
    font-size: 14px !important;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}
.shine-tab-btn svg {
    transition: transform 0.3s ease;
}
.shine-tab-btn:hover svg {
    transform: scale(1.2);
}


/* Dashboard Alerts */
.shine-dashboard-alert {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    border: 3px solid #000;
    border-radius: 15px;
    margin-bottom: 30px;
    position: relative;
    box-shadow: 6px 6px 0 #000;
}
.shine-dashboard-alert.expired { background: #FEF2F2; }
.shine-dashboard-alert.pending { background: #FFFBEB; }

.alert-icon { font-size: 32px; }
.alert-content { flex: 1; }
.alert-content h4 { margin: 0 0 5px 0; font-weight: 900; font-size: 18px; color: #000; text-transform: uppercase; }
.alert-content p { margin: 0; font-weight: 700; color: #4B5563; font-size: 14px; }

.alert-btn {
    background: #EF4444;
    color: #fff !important;
    padding: 10px 20px;
    border: 2px solid #000;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 900;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.2s;
}
.alert-btn:hover { transform: translate(-3px, -3px); box-shadow: 4px 4px 0 #000; }

.alert-badge {
    background: #D97706;
    color: #fff;
    padding: 5px 15px;
    border: 2px solid #000;
    border-radius: 100px;
    font-weight: 900;
    font-size: 11px;
    letter-spacing: 1px;
}

