/* Premium Color Variables */
:root {
    /* Primary Colors */
    --primary-red: #ff2d55;
    --primary-red-dark: #d12545;
    --primary-red-light: #ff5a7d;
    
    /* Background Colors */
    --bg-primary: #0a0a0a;
    --bg-secondary: #151515;
    --bg-tertiary: #222222;
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #aaaaaa;
    
    /* Status Colors */
    --public-color: #28a745;
    --private-color: #dc3545;
    --unlisted-color: #fd7e14;
}

/* Wave Loader */
.wave-reloader {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 60px;
    z-index: 9999;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
}

.wave-bars {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 100%;
    gap: 8px;
}

.wave-bar {
    width: 10px;
    height: 40px;
    background: linear-gradient(to top, var(--primary-red), var(--primary-red-light));
    border-radius: 10px;
    animation: wave 1.4s ease-in-out infinite;
    transform-origin: bottom;
    box-shadow: 0 2px 6px rgba(128, 0, 32, 0.3);
}

.wave-bar:nth-child(1) { animation-delay: 0.1s; }
.wave-bar:nth-child(2) { animation-delay: 0.2s; }
.wave-bar:nth-child(3) { animation-delay: 0.3s; }
.wave-bar:nth-child(4) { animation-delay: 0.4s; }
.wave-bar:nth-child(5) { animation-delay: 0.5s; }

@keyframes wave {
    0%, 100% { 
        transform: scaleY(0.6);
        background: linear-gradient(to top, var(--primary-red), var(--primary-red-dark));
    }
    50% { 
        transform: scaleY(1.6);
        background: linear-gradient(to top, var(--primary-red-light), #b0022e);
    }
}

/* Premium Alert */
.premium-alert {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-secondary);
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    z-index: 1000;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    max-width: 90%;
}

.premium-alert.show {
    bottom: 20px;
    opacity: 1;
}

.alert-content {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.alert-icon {
    color: var(--primary-red);
    font-size: 1.1rem;
}

.alert-message {
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 240px;
}

/* Base Styles */
.dark-theme {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
}

.app-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100vw;       /* Force full viewport width */
    max-width: none;    /* Remove the 100% max-width restriction */

    margin: 0;          /* Remove any default margins */
    padding: 0;         /* Remove padding if needed */
}