@import url('notifications.css');

:root {
    --bg-dark: #0a0a0c;
    --bg-card: #141417;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a5;
    --accent-color: #ffac2f;
    --accent-hover: #fc9e12;
    --border-color: #2a2a2e;
    --input-bg: #1e1e22;
    --premium-color: #C19D73;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: "Google Sans", sans-serif;
    font-optical-sizing: auto;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1 0 auto;
}

footer {
    flex-shrink: 0;
}

.google-sans-regular {
    font-family: "Google Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.google-sans-medium {
    font-family: "Google Sans", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.google-sans-bold {
    font-family: "Google Sans", sans-serif;
    font-weight: 700;
    font-style: normal;
}

/* Container Restrictions */
.container {
    max-width: 1400px !important;
}

.container-fluid {
    max-width: 1400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.btn-premium {
    background-color: var(--premium-color) !important;
    color: #000 !important;
    border: none !important;
    transition: opacity 0.2s !important;
}

.btn-premium:hover {
    opacity: 0.9 !important;
}

/* System Notifications */
#toast-container {
    position: fixed !important;
    bottom: 25px !important;
    left: 25px !important;
    z-index: 10005 !important;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.custom-toast {
    background: rgba(20, 20, 23, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--accent-color);
    color: #ffffff;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    font-family: 'Google Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    pointer-events: auto;
    max-width: 380px;
    transform: translateX(-120%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
}

.custom-toast.show {
    transform: translateX(0);
    opacity: 1;
}

/* Premium Indicators */
.premium-avatar-ring {
    border: 3px solid #C19D73 !important;
    padding: 2px;
}

.premium-badge-icon {
    width: 14px;
    height: 14px;
    margin-left: 5px;
    vertical-align: middle;
    fill: #C19D73;
    filter: drop-shadow(0 0 3px rgba(193, 157, 115, 0.6)) drop-shadow(0 0 6px rgba(193, 157, 115, 0.4));
}