body {
    background-color: #111111;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    color: #fff;
    padding: 0;
    box-sizing: border-box;
    display: flex;
}

.container {
    margin-left: 280px !important;
    width: calc(100% - 300px) !important;
    padding: 30px;
    max-width: none;
    display: block;
}

.pass-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 25px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    border: 1px solid #333;
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.season-banner {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    padding: 8px 30px;
    transform: translateX(30%) translateY(0%) rotate(45deg);
    transform-origin: top left;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.level-progress {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 20px 0;
    padding: 20px;
    background: rgba(0,0,0,0.2);
    border-radius: 15px;
    width: 100%;
    box-sizing: border-box;
}

.level-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #4CAF50;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    background: #1a1a1a;
    position: relative;
}

.progress-container {
    flex: 1;
    display: flex;
    align-items: center;
}

.progress-bar {
    height: 8px;
    background: #2a2a2a;
    border-radius: 4px;
    overflow: hidden;
    width: 100%;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4CAF50, #45a049);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.progress-milestones {
    position: relative;
    width: 100%;
    height: 30px;
}

.milestone {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #333;
    border: 2px solid #4CAF50;
    transform: translateX(-50%);
    transition: all 0.3s ease;
}

.milestone.achieved {
    background: #4CAF50;
}

.milestone:hover {
    transform: translateX(-50%) scale(1.2);
}

.rewards-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reward-tier {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 20px;
    background: #1a1a1a;
    border-radius: 15px;
    position: relative;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

.reward-tier:hover {
    transform: translateY(-5px);
}

.reward-tier.premium {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid #ffd700;
}

.tier-level {
    font-size: 24px;
    font-weight: bold;
    color: #4CAF50;
    min-width: 40px;
}

.tier-content {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 20px;
}

.reward-icon {
    width: 50px;
    height: 50px;
    background: #2a2a2a;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.reward-info h3 {
    margin: 0;
    font-size: 18px;
}

.reward-info p {
    margin: 5px 0 0;
    color: #888;
    font-size: 14px;
}

.claim-button {
    background: #4CAF50;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.claim-button:hover {
    background: #45a049;
}

.claim-button.claimed {
    background: #2a2a2a;
    cursor: default;
}

.locked {
    opacity: 0.5;
    filter: grayscale(1);
    pointer-events: none;
}

.upcoming-seasons {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #2a2a2a;
}

.upcoming-seasons h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #4CAF50;
}

.upcoming-season-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #333;
    position: relative;
    overflow: hidden;
}

.season-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.countdown {
    background: rgba(0,0,0,0.3);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    color: #4CAF50;
}

.preview-rewards {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.preview-reward {
    background: #222;
    padding: 10px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.preview-reward.premium {
    border: 1px solid #ffd700;
    background: linear-gradient(135deg, #222 0%, #333 100%);
}

.preview-reward i {
    color: #4CAF50;
}

.preview-more {
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.premium-pass-card {
    background: linear-gradient(135deg, #2a1a3a 0%, #3a2a4a 100%);
    border-radius: 25px;
    padding: 30px;
    border: 1px solid #553377;
    position: relative;
    overflow: hidden;
}

.premium-pass-banner {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
    padding: 8px 40px;
    transform: rotate(45deg);
    color: #000;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.premium-benefits {
    margin-top: 20px;
    list-style: none;
    padding: 0;
}

.premium-benefits li {
    margin: 10px 0;
    padding-left: 25px;
    position: relative;
}

.premium-benefits li:before {
    content: '✨';
    position: absolute;
    left: 0;
    color: #ffd700;
}

.premium-buy-button {
    background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.premium-buy-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.premium-buy-button:disabled {
    background: #444;
    cursor: not-allowed;
    color: #666;
}

@media (max-width: 768px) {
    .container {
        margin-left: 0 !important;
        width: 100% !important;
        padding: 15px;
    }
}

/* Debug Window Styles */
.debug-window {
    position: fixed;
    right: 20px;
    top: 20px;
    width: 400px;
    max-height: 80vh;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid #444;
    border-radius: 8px;
    z-index: 9999;
    overflow: hidden;
    display: none;
    resize: both;
}

.debug-header {
    padding: 10px;
    background: #222;
    border-bottom: 1px solid #444;
    cursor: move;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.debug-content {
    padding: 10px;
    overflow-y: auto;
    max-height: calc(80vh - 40px);
}

.debug-info {
    font-family: monospace;
    font-size: 12px;
    color: #0f0;
    margin: 5px 0;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.debug-close {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
}

.debug-minimize {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    margin-right: 10px;
}

/* Main Layout */
.container {
    margin-left: 280px !important;
    width: calc(100% - 300px) !important;
    padding: 30px;
    max-width: none;
    display: block;
}

/* Pass Header Card */
.pass-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 25px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    border: 1px solid #333;
    grid-column: 1 / -1;
}

.header-content {
    text-align: center;
}

.season-name {
    color: #4CAF50;
    font-size: 1.2em;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pass-title {
    font-size: 2.5em;
    margin: 10px 0;
    font-weight: 600;
}

.season-info {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    color: #888;
}

/* Improved Level Progress */
.level-progress {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 30px 0;
    padding: 40px;
    background: rgba(0,0,0,0.2);
    border-radius: 15px;
    position: relative;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    box-sizing: border-box;
}

.level-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 150px;
}

.level-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    box-shadow: 20px 20px 60px #1a1a1a,
               -20px -20px 60px #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: bold;
    color: #4CAF50;
    position: relative;
    border: 4px solid rgba(76, 175, 80, 0.3);
}

.level-circle::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    background: linear-gradient(45deg, transparent, rgba(76, 175, 80, 0.3));
    z-index: -1;
}

.progress-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.progress-bar {
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
    width: 100%;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(76, 175, 80, 0.8),
        rgba(76, 175, 80, 1)
    );
    border-radius: 6px;
    position: relative;
    transition: width 1s ease-in-out;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: shimmer 2s infinite;
}

.progress-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.progress-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
    padding: 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-2px);
}

.stat-value {
    font-size: 24px;
    font-weight: bold;
    color: #4CAF50;
    margin-bottom: 5px;
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.3);
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.premium-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    margin-left: 10px;
    background: linear-gradient(90deg, #ffd700, #ffa500, #ffd700);
    background-size: 200% 100%;
    color: #000;
    animation: shimmer 2s infinite linear;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Add new sidebar styles */
.clip-pass-sidebar {
    position: fixed;
    left: 220px;
    top: 0;
    width: 250px;
    height: 100vh;
    background: #1a1a1a;
    border-right: 1px solid #333;
    padding: 20px;
    z-index: 100;
}

.season-header-sidebar {
    padding: 20px;
    border-bottom: 1px solid #333;
    margin-bottom: 20px;
}

.season-title {
    font-size: 24px;
    color: #4CAF50;
    margin-bottom: 10px;
}

.season-time {
    font-size: 14px;
    color: #888;
}

.clip-pass-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.clip-pass-nav li {
    margin-bottom: 10px;
}

.clip-pass-nav a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s;
}

.clip-pass-nav a:hover,
.clip-pass-nav a.active {
    background: #2a2a2a;
}

.clip-pass-nav i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

/* Adjust main container for new sidebar */
.container {
    margin-left: 280px !important;
    width: calc(100% - 300px) !important;
    padding: 30px;
    max-width: none;
    display: block;
}

/* Tab content styles */
.tab-content {
    display: none;
    width: 100%;
}

.tab-content.active {
    display: block;
}
:root {
    --violet-dark: #1a1025;
    --violet-medium: #2d1b4b;
    --violet-light: #4e31aa;
    --violet-accent: #8a5cf7;
    --violet-glow: rgba(138, 92, 247, 0.3);
    --text-light: #f8f8ff;
    --text-medium: #bbb8cc;
    --text-dark: #7a7789;
    --background-dark: #0c0812;
    --card-bg: #171226;
    --border-color: #332b50;
    --success-color: #7c4dff;
    --success-color-light: #9e7bff;
}

body {
    background-color: var(--background-dark);
}

/* Reset sidebar positioning with violet theme */
.clip-pass-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background: var(--violet-dark);
    padding: 0;
    z-index: 1000;
    border-right: 1px solid var(--border-color);
    box-shadow: 2px 0 10px rgba(0,0,0,0.3);
    overflow-y: auto;
}

/* Modern season header with violet */
.season-header-sidebar {
    padding: 30px 20px;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(135deg, var(--violet-dark) 0%, var(--violet-medium) 100%);
    position: relative;
    overflow: hidden;
}

.season-header-sidebar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--violet-accent), transparent);
}

.season-title {
    font-size: 26px;
    color: var(--text-light);
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.season-time {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.6;
}

/* Nav items styling with violet theme */
.clip-pass-nav {
    list-style: none;
    padding: 15px 0;
    margin: 0;
}

.clip-pass-nav li {
    margin: 2px 10px;
}

.clip-pass-nav a {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    color: var(--text-medium);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.2s ease;
    font-weight: 500;
    border-left: 3px solid transparent;
}

.clip-pass-nav a:hover {
    color: var(--text-light);
    background: rgba(138, 92, 247, 0.1);
    transform: translateX(5px);
    border-left: 3px solid var(--violet-accent);
}

.clip-pass-nav a.active {
    background: linear-gradient(135deg, var(--violet-light) 0%, var(--violet-medium) 100%);
    color: var(--text-light);
    box-shadow: 0 4px 15px var(--violet-glow);
    border-left: 3px solid var(--violet-accent);
}

.clip-pass-nav i {
    margin-right: 12px;
    width: 20px;
    text-align: center;
    font-size: 16px;
}

.nav-divider {
    height: 1px;
    background: var(--border-color);
    margin: 15px 10px;
}

/* Fix container margin */
.container {
    margin-left: 280px !important;
    width: calc(100% - 300px) !important;
    padding: 30px;
    max-width: none;
    display: block;
}

/* Tab content styling with violet theme */
.tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
    width: 100%;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Tab headers with violet */
.tab-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.tab-header h2 {
    font-size: 28px;
    color: var(--text-light);
    margin: 0;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.tab-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--violet-accent);
    border-radius: 2px;
}

.tab-header p {
    color: var (--text-dark);
    margin: 8px 0 0 0;
    font-size: 16px;
}

/* Dashboard grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    width: 100%;
}

.dashboard-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.25), 0 0 15px var(--violet-glow);
    border-color: var(--violet-light);
}

.dashboard-card h3 {
    color: var(--text-light);
    margin-top: 0;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dashboard-card h3 i {
    color: var(--violet-accent);
}

/* Override progress bar */
.progress-bar {
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
    margin: 15px 0;
    border: none;
}

.progress-fill {
    background: linear-gradient(90deg, var(--violet-light), var(--violet-accent));
    height: 100%;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    animation: shimmer 2s infinite;
}

/* Override existing card styles */
.level-progress {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    width: 100%;
    box-sizing: border-box;
}

.level-circle {
    background: linear-gradient(145deg, var(--violet-medium), var(--violet-dark));
    border: 4px solid var(--violet-light);
    color: var(--text-light);
    box-shadow: 0 0 20px var(--violet-glow);
}

.stat-item {
    background: rgba(0, 0, 0, 0.2);
}

.stat-value {
    color: var (--violet-accent);
    text-shadow: 0 0 10px var (--violet-glow);
}

.reward-tier {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.reward-tier:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2), 0 0 10px var(--violet-glow);
}

.reward-tier.premium {
    background: linear-gradient(135deg, var(--violet-dark), var(--violet-medium));
    border: 1px solid var(--violet-accent);
}

.tier-level {
    color: var(--violet-accent);
}

.reward-icon {
    background: var(--violet-medium);
    color: var(--violet-accent);
}

.claim-button {
    background: var(--violet-accent);
    color: white;
    transition: all 0.3s ease;
}

.claim-button:hover {
    background: var(--success-color-light);
    box-shadow: 0 0 15px var(--violet-glow);
}

.claim-button.claimed {
    background: var(--violet-dark);
}

/* Premium pass styling */
.premium-pass-card {
    background: linear-gradient(135deg, #2d1b4b, #3a236c);
    border: 1px solid var(--violet-accent);
    box-shadow: 0 5px 25px rgba(0,0,0,0.3);
}

.premium-pass-banner {
    background: linear-gradient(135deg, var(--violet-accent), #b78dff);
}

.premium-benefits li:before {
    color: var(--violet-accent);
}

.premium-buy-button {
    background: linear-gradient(135deg, var(--violet-accent), var(--violet-light));
    color: white;
}

.premium-buy-button:hover {
    box-shadow: 0 5px 15px var(--violet-glow);
}

/* Empty states */
.empty-state {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
}

.empty-state i {
    color: var(--violet-medium);
}

/* Settings */
.settings-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
}

input:checked + .slider {
    background-color: var(--violet-accent);
}

/* Animation for shimmer effect */
@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

#dashboard {
    animation: fadeIn 0.5s ease-in-out;
}

.dashboard-welcome {
    background: linear-gradient(135deg, var(--violet-dark) 0%, var(--violet-medium) 100%);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    border: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 20px;
}

.welcome-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.welcome-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--violet-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--violet-accent);
    box-shadow: 0 0 0 3px var(--violet-glow);
}

.welcome-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--text-medium);
}

.welcome-text h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.welcome-text p {
    margin: 5px 0 0;
    color: var(--text-medium);
    font-size: 16px;
}

.quick-stats {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.quick-stat {
    background: rgba(0,0,0,0.2);
    border-radius: 12px;
    padding: 15px;
    min-width: 120px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.quick-stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-color: var(--violet-accent);
}

.stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--violet-medium);
    color: var(--violet-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.stat-details {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-light);
}

.stat-label {
    font-size: 12px;
    color: var(--text-medium);
}

.dashboard-stats-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.dashboard-main-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    border: 1px solid var(--border-color);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    width: 100%;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.card-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-light);
    display: flex;
    align-items: center;
}

.card-header h3 i {
    margin-right: 10px;
    color: var(--violet-accent);
}

.badge {
    background: var(--violet-accent);
    color: var(--text-light);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.dashboard-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.dashboard-card.animated:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.25), 0 0 15px var(--violet-glow);
    border-color: var(--violet-accent);
}

.card-footer {
    margin-top: auto;
    padding-top: 20px;
    text-align: center;
}

.card-footer a {
    color: var(--violet-accent);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.card-footer a:hover {
    color: var(--violet-accent);
    text-decoration: underline;
}

.card-footer a i {
    margin-left: 5px;
    transition: transform 0.2s ease;
}

.card-footer a:hover i {
    transform: translateX(3px);
}

/* Level Progress Compact */
.level-progress-compact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.level-circles {
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
}

.previous-level, .current-level, .next-level {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.previous-level {
    background: rgba(255,255,255,0.1);
    color: var(--text-medium);
    font-size: 16px;
}

.current-level {
    background: linear-gradient(135deg, var(--violet-light), var(--violet-accent));
    color: var(--text-light);
    font-size: 20px;
    box-shadow: 0 0 15px var(--violet-glow);
    border: 2px solid rgba(255,255,255,0.1);
}

.next-level {
    background: rgba(255,255,255,0.05);
    color: var(--text-dark);
    font-size: 16px;
    border: 1px dashed var(--border-color);
}

.progress-bar.enhanced {
    height: 15px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.progress-fill.animated {
    background: linear-gradient(90deg, var(--violet-light), var(--violet-accent));
    border-radius: 10px;
    position: relative;
    animation: fillAnimation 1s ease-out;
}

.progress-pulse {
    position: absolute;
    right: -5px;
    top: -3px;
    bottom: -3px;
    width: 5px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 10px 5px var(--violet-accent);
    opacity: 0.7;
    animation: pulse 1.5s infinite;
}

.progress-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    flex-wrap: wrap;
    gap: 10px;
}

.progress-percentage {
    font-size: 18px;
    font-weight: 700;
    color: var(--violet-accent);
}

.progress-numbers {
    font-size: 14px;
    color: var(--text-medium);
}

.progress-remaining {
    font-size: 12px;
    color: var(--text-dark);
    background: rgba(255,255,255,0.05);
    padding: 5px 10px;
    border-radius: 15px;
}

/* Activity Chart */
.activity-chart {
    height: 180px;
    margin: 20px 0;
    padding: 10px;
}

.activity-days {
    display: flex;
    height: 100%;
    align-items: flex-end;
    gap: 8px;
}

.day-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.day-bar {
    width: 100%;
    background: linear-gradient(to top, var(--violet-medium), var(--violet-accent));
    border-radius: 5px 5px 0 0;
    transition: height 1s ease;
}

.day-label {
    margin-top: 10px;
    font-size: 12px;
    color: var(--text-dark);
}

/* Rewards Preview */
.rewards-preview {
    padding: 10px 0;
}

.rewards-preview h4 {
    font-size: 16px;
    color: var(--text-medium);
    margin: 0 0 15px 0;
    font-weight: 500;
}

.next-rewards {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.reward-preview {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.05);
    padding: 12px;
    border-radius: 10px;
    transition: transform 0.2s ease;
}

.reward-preview:hover {
    transform: translateX(5px);
}

.reward-preview.premium {
    background: linear-gradient(135deg, rgba(138,92,247,0.1), rgba(138,92,247,0.2));
    border-left: 3px solid var(--violet-accent);
}

.reward-preview .reward-icon {
    width: 40px;
    height: 40px;
    background: var(--violet-medium);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--violet-accent);
}

.reward-preview .reward-info {
    flex: 1;
}

.reward-preview .reward-info p {
    margin: 0;
    font-weight: 500;
    color: var(--text-light);
}

.reward-preview .reward-info span {
    font-size: 12px;
    color: var(--text-dark);
}

.all-collected {
    text-align: center;
    padding: 30px;
}

.all-collected i {
    font-size: 40px;
    color: var(--violet-accent);
    margin-bottom: 15px;
}

.all-collected p {
    color: var(--text-medium);
    margin: 0;
}

/* Daily Progress */
.daily-progress {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.daily-goal {
    display: flex;
    align-items: center;
    gap: 20px;
}

.goal-progress {
    width: 100px;
    flex-shrink: 0;
}

.circular-chart {
    width: 100%;
    height: auto;
}

.circle-bg {
    fill: none;
    stroke: rgba(255,255,255,0.1);
    stroke-width: 3.8;
}

.circle {
    fill: none;
    stroke: var(--violet-accent);
    stroke-width: 3.8;
    stroke-linecap: round;
    animation: progress 1s ease-out forwards;
}

.percentage {
    fill: var(--text-light);
    font-size: 0.5em;
    text-anchor: middle;
    font-weight: bold;
}

.goal-info {
    flex: 1;
}

.goal-info p {
    margin: 0 0 5px;
    color: var(--text-light);
    font-weight: 500;
}

.goal-info span {
    color: var(--text-medium);
    font-size: 14px;
}

.daily-bonus {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
}

.bonus-timer {
    font-size: 22px;
    font-weight: 700;
    color: var(--violet-accent);
    margin-bottom: 5px;
}

.daily-bonus p {
    margin: 0;
    color: var(--text-medium);
    font-size: 14px;
}

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

@keyframes fillAnimation {
    0% { width: 0; }
}

@keyframes pulse {
    0% { opacity: 0.7; }
    50% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

@keyframes progress {
    0% { stroke-dasharray: 0 100; }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .welcome-content, .quick-stats {
        width: 100%;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-stats {
        justify-content: space-between;
    }
}
.rewards-overview {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
}

.rewards-progress {
    flex: 1;
    min-width: 200px;
}

.rewards-numbers {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-light);
    display: flex;
    align-items: baseline;
}

.rewards-numbers .collected {
    color: var(--violet-accent);
}

.rewards-numbers .separator {
    margin: 0 5px;
    color: var(--text-medium);
}

.progress-label {
    color: var(--text-medium);
    margin-bottom: 10px;
}

.rewards-progress-bar {
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.rewards-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--violet-light), var(--violet-accent));
    border-radius: 5px;
    position: relative;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-shine {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: shine 2s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.rewards-stats {
    display: flex;
    gap: 20px;
}

.reward-stat {
    background: rgba(0,0,0,0.2);
    padding: 15px;
    border-radius: 10px;
    min-width: 120px;
    text-align: center;
    position: relative;
}

.reward-stat.premium {
    background: linear-gradient(135deg, rgba(138,92,247,0.2), rgba(138,92,247,0.05));
    border: 1px solid rgba(138,92,247,0.3);
}

.stat-number {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 5px;
    position: relative;
}

.premium-lock {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 24px;
    height: 24px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #ffd700;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 12px;
    color: var(--text-medium);
}

/* Filters */
.rewards-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
    justify-content: flex-start;
}

.filter-btn {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 8px 15px;
    color: var(--text-medium);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn:hover {
    background: rgba(255,255,255,0.05);
    color: var(--text-light);
}

.filter-btn.active {
    background: var(--violet-accent);
    border-color: var(--violet-accent);
    color: white;
}

/* Rewards Container */
.rewards-container-modern {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

/* Level Groups */
.rewards-level-group {
    display: flex;
    gap: 20px;
}

.level-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60px;
}

.level-badge {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-medium);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
}

.level-badge.current {
    background: linear-gradient(135deg, var(--violet-light), var(--violet-accent));
    color: white;
    box-shadow: 0 0 15px var(--violet-glow);
}

.level-badge.completed {
    background: var(--violet-medium);
    color: var(--text-light);
}

.level-badge.completed::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 14px;
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: var(--violet-accent);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.level-line {
    width: 2px;
    background: var(--border-color);
    flex-grow: 1;
    margin-top: 10px;
    position: relative;
}

.current-level .level-line {
    background: linear-gradient(to bottom, var(--violet-accent), var(--border-color));
}

.past-level .level-line {
    background: var(--violet-medium);
}

.level-rewards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    flex: 1;
    width: calc(100% - 60px);
}

/* Reward Cards */
.reward-card {
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    padding: 20px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.reward-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    border-color: var(--violet-accent);
}

.reward-card.premium {
    background: linear-gradient(135deg, 
        var(--card-bg), 
        rgba(77, 54, 137, 0.6)
    );
    border: 1px solid var(--violet-accent);
}

.reward-card.premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--violet-accent), 
        #ffd700, 
        var(--violet-accent)
    );
    background-size: 200% 100%;
    animation: shimmer 2s infinite linear;
}

.reward-card.collected {
    border-color: var(--violet-accent);
}

.reward-card.locked {
    opacity: 0.6;
    filter: grayscale(0.8);
}

.reward-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    height: 20px;
}

.premium-indicator {
    color: #ffd700;
    font-size: 16px;
    animation: pulse 2s infinite;
}

.collected-indicator {
    color: var(--violet-accent);
    font-size: 16px;
}

.reward-icon {
    width: 60px;
    height: 60px;
    background: rgba(0,0,0,0.3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 15px;
    position: relative;
    color: var(--violet-accent);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.reward-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    box-shadow: 0 0 15px var(--violet-glow);
    animation: pulse 2s infinite;
}

.reward-details {
    text-align: center;
    margin-bottom: 15px;
    flex: 1;
}

.reward-details h3 {
    font-size: 18px;
    margin: 0 0 10px;
    color: var(--text-light);
}

.reward-details p {
    font-size: 14px;
    color: var(--text-medium);
    margin: 0;
    line-height: 1.4;
}

.reward-footer {
    text-align: center;
    margin-top: auto;
}

.claim-status {
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.claim-status.claimed {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
}

.claim-status.locked {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-medium);
}

.claim-button {
    background: var(--violet-accent);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.claim-button:hover {
    background: var(--success-color-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--violet-glow);
}

/* No Rewards Message */
.no-rewards-message {
    text-align: center;
    padding: 40px 20px;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    margin-top: 30px;
}

.no-rewards-message i {
    font-size: 40px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.no-rewards-message h3 {
    color: var(--text-light);
    margin: 0 0 10px;
}

.no-rewards-message p {
    color: var(--text-medium);
    margin: 0 0 20px;
}

.reset-filter-btn {
    background: var(--violet-accent);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reset-filter-btn:hover {
    background: var(--success-color-light);
}

/* Premium Info Banner */
.premium-reward-info {
    background: linear-gradient(135deg, rgba(138,92,247,0.2), rgba(138,92,247,0.05));
    border: 1px solid var(--violet-accent);
    border-radius: 15px;
    padding: 20px;
    margin-top: 30px;
}

.premium-info-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.premium-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(138,92,247,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffd700;
}

.premium-text {
    flex: 1;
}

.premium-text h3 {
    margin: 0 0 5px;
    color: var(--text-light);
}

.premium-text p {
    margin: 0;
    color: var(--text-medium);
}

.premium-unlock-btn {
    background: linear-gradient(135deg, #ffd700, #ffa500);
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.premium-unlock-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

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

/* Responsive */
@media (max-width: 768px) {
    .rewards-overview {
        flex-direction: column;
    }
    
    .rewards-stats {
        width: 100%;
        justify-content: space-between;
    }
    
    .rewards-level-group {
        flex-direction: column;
    }
    
    .level-marker {
        width: 100%;
        flex-direction: row;
        margin-bottom: 10px;
    }
    
    .level-line {
        width: auto;
        height: 2px;
        flex-grow: 1;
        margin-top: 0;
        margin-left: 10px;
    }
}

#premium {
    animation: fadeIn 0.5s ease;
}

/* Premium Hero Section */
.premium-hero {
    background: linear-gradient(135deg, var(--violet-dark) 0%, var(--violet-medium) 100%);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 1px solid var(--violet-accent);
    width: 100%;
    box-sizing: border-box;
}

.premium-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--violet-accent) 0%, transparent 70%);
    opacity: 0.3;
    top: -100px;
    right: -100px;
    filter: blur(30px);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.1); }
}

.premium-hero-content {
    position: relative;
    z-index: 2;
}

.premium-hero-content h2 {
    margin: 15px 0;
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(90deg, #fff, var(--violet-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.premium-hero-content p {
    margin: 0;
    font-size: 18px;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

.premium-badge-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: linear-gradient(90deg, #ffd700, #ffa500);
    border-radius: 30px;
    color: #000;
    font-weight: 700;
    margin-bottom: 15px;
    box-shadow: 0 0 20px rgba(255,215,0,0.5);
    transition: all 0.3s ease;
}

.premium-badge-large:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255,215,0,0.7);
}

.badge-icon {
    font-size: 20px;
    animation: pulse 2s infinite;
}

.badge-text {
    font-size: 18px;
    letter-spacing: 1px;
}

/* Benefits Grid */
.premium-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    width: 100%;
}

.benefit-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    border-color: var(--violet-accent);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--violet-medium), var(--violet-light));
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text-light);
    box-shadow: 0 0 15px var(--violet-glow);
}

.benefit-card h3 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-light);
}

.benefit-card p {
    margin: 0;
    color: var(--text-medium);
    font-size: 14px;
    line-height: 1.5;
}

/* Comparison Table */
.premium-comparison {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.premium-comparison h3 {
    margin: 0 0 20px;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-light);
}

.comparison-table {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: rgba(0,0,0,0.2);
    padding: 15px;
    font-weight: 600;
    color: var(--text-light);
    width: 100%;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.2s ease;
    width: 100%;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row:hover {
    background: rgba(255,255,255,0.02);
}

.column-feature {
    color: var(--text-medium);
}

.column-free {
    color: var(--text-dark);
}

.column-premium {
    color: var(--violet-accent);
    font-weight: 500;
}

.column-premium i {
    margin-right: 5px;
}

.column-free i.fa-times {
    color: #666;
}

/* Purchase Section */
.premium-purchase-container {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.premium-active {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px;
}

.checkmark-circle {
    width: 60px;
    height: 60px;
    background: var(--violet-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    animation: pulse 2s infinite;
}

.premium-active h3 {
    color: var(--text-light);
    margin: 0;
    font-size: 24px;
}

.premium-active p {
    color: var(--text-medium);
    margin: 0;
    text-align: center;
}

.premium-cost {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cost-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 36px;
    font-weight: 700;
    color: #ffd700;
}

.cost-highlight i {
    font-size: 24px;
}

.your-balance {
    font-size: 16px;
    color: var(--text-medium);
}

.your-balance.insufficient {
    color: #ff5252;
}

.get-more-coins {
    margin-left: 10px;
    color: var(--violet-accent);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.get-more-coins:hover {
    text-decoration: underline;
}

.premium-buy-button {
    background: linear-gradient(135deg, #ffd700, #ffa500);
    color: #000;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 18px;
    margin: 20px auto;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    width: 300px;
    max-width: 100%;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.premium-buy-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.premium-buy-button.disabled {
    background: #333;
    color: #666;
    cursor: not-allowed;
    box-shadow: none;
}

.premium-buy-button.disabled:hover {
    transform: none;
}

.purchase-terms {
    text-align: center;
    color: var(--text-dark);
    font-size: 14px;
}

.discount-note {
    display: block;
    color: #ffd700;
    margin-top: 5px;
    font-weight: 500;
    animation: pulse 2s infinite;
}

/* Premium Rewards Preview */
.premium-rewards-preview {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid var(--border-color);
}

.premium-rewards-preview h3 {
    margin: 0 0 20px;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-light);
}

.premium-rewards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
    width: 100%;
}

.premium-reward-card {
    background: rgba(0,0,0,0.2);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
}

.premium-reward-card:hover {
    transform: translateY(-5px);
    border-color: var(--violet-accent);
}

.premium-reward-card.locked {
    opacity: 0.6;
}

.premium-reward-card::before {
    content: '';
    position: absolute;
    top: -1px;
    right: -1px;
    width: 30px;
    height: 30px;
    background: var(--violet-accent);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    border-top-right-radius: 10px;
}

.premium-reward-icon {
    width: 50px;
    height: 50px;
    background: var(--violet-medium);
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--violet-accent);
}

.premium-reward-card h4 {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.reward-level {
    font-size: 14px;
    color: var(--text-dark);
}

.rewards-cta {
    text-align: center;
    margin-top: 20px;
}

.rewards-cta a {
    color: var(--violet-accent);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.rewards-cta a:hover {
    text-decoration: underline;
}

.rewards-cta a i {
    margin-left: 5px;
    transition: transform 0.2s ease;
}

.rewards-cta a:hover i {
    transform: translateX(3px);
}

@keyframes pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .premium-hero {
        padding: 30px 20px;
    }
    
    .premium-hero-content h2 {
        font-size: 24px;
    }
    
    .premium-hero-content p {
        font-size: 16px;
    }
    
    .comparison-row, .comparison-header {
        padding: 10px;
        font-size: 14px;
    }
    
    .premium-rewards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cost-highlight {
        font-size: 28px;
    }
}


.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: #1a1a1a;
    border-radius: 15px;
    border: 1px solid #222;
}

.empty-state i {
    font-size: 48px;
    color: #333;
    margin-bottom: 20px;
}

.empty-state h3 {
    margin: 0 0 10px;
    color: #aaa;
    font-weight: 500;
}

.empty-state p {
    color: #666;
    margin: 0;
}

/* Settings styles */
.settings-container {
    display: grid;
    gap: 20px;
}

.settings-card {
    background: #1a1a1a;
    border-radius: 15px;
    padding: 25px;
    border: 1px solid #222;
}

.settings-card h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 18px;
    color: #fff;
    padding-bottom: 15px;
    border-bottom: 1px solid #222;
}

.setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #222;
}

.setting-item:last-child {
    border-bottom: none;
}

.setting-info p {
    margin: 0 0 5px;
    font-weight: 500;
}

.setting-info span {
    font-size: 14px;
    color: #777;
}

/* Toggle switch */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #333;
    transition: .3s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .3s;
}

input:checked + .slider {
    background-color: #4CAF50;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 24px;
}

.slider.round:before {
    border-radius: 50%;
}

.login-required {
    text-align: center;
    padding: 80px 20px;
    background: #1a1a1a;
    border-radius: 15px;
    border: 1px solid #222;
    max-width: 500px;
    margin: 100px auto;
}

.login-button {
    display: inline-block;
    background: #7289DA;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.login-button:hover {
    background: #5f73bc;
    transform: translateY(-2px);
}