:root {
    --primary-color: #ff0055;
    --secondary-color: #ffcc00;
    --bg-color: #0f0f13;
    --sidebar-bg: rgba(0, 0, 0, 0.4);
    --text-color: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --input-bg: rgba(0, 0, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Gradient Top Bar */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff0055, #ff00aa, #aa00ff, #ff0055);
    background-size: 300% 100%;
    animation: gradientSlide 3s ease infinite;
    z-index: 9999;
}

@keyframes gradientSlide {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Background Animation */
.background-globes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.globe {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 10s infinite alternate ease-in-out;
}

.globe-1 {
    width: 300px;
    height: 300px;
    background: #ff0077;
    top: 10%;
    left: 20%;
}

.globe-2 {
    width: 400px;
    height: 400px;
    background: #7700ff;
    bottom: 10%;
    right: 20%;
    animation-delay: -2s;
}

.globe-3 {
    width: 200px;
    height: 200px;
    background: #00ffff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -5s;
}

@keyframes float {
    0% {
        transform: translateY(0) scale(1);
    }

    100% {
        transform: translateY(-30px) scale(1.1);
    }
}

/* App Container (Sidebar + Main) */
.app-container {
    display: flex;
    min-height: 100vh;
}

.centered-content {
    align-items: center;
    justify-content: center;
}

/* Sidebar Styles */
.sidebar {
    width: 250px;
    background: var(--sidebar-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-right: 1px solid var(--glass-border);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    z-index: 100;
}

.sidebar .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 3rem;
}

.sidebar .logo i {
    font-size: 1.8rem;
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sidebar .logo h2 {
    font-size: 1.5rem;
}

.highlight {
    background: linear-gradient(90deg, #ff00cc, #3333ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sidebar nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.nav-item:hover,
.nav-item.active {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.nav-item i {
    width: 20px;
    text-align: center;
}

.sidebar-footer {
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.4;
    margin-top: auto;
}

/* Main Content Styles */
.main-content {
    flex: 1;
    margin-left: 250px;
    padding: 2rem 3rem;
    display: flex;
    flex-direction: column;
}

.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-profile span {
    opacity: 0.7;
    font-size: 0.9rem;
}

.avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #00ffff, #00ff88);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

.content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

/* Glass Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

/* Inputs & Buttons */
.input-group {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 16px 20px;
    background: var(--input-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="password"]:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(255, 0, 85, 0.3);
}

button {
    width: 100%;
    padding: 16px;
    background: linear-gradient(45deg, #ff0055, #ff00aa);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

button:hover {
    box-shadow: 0 5px 20px rgba(255, 0, 85, 0.4);
}

button:active {
    transform: scale(0.98);
}

@media (min-width: 600px) {
    .input-group {
        flex-direction: row;
    }

    button {
        width: auto;
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* Gallery Grid */
.gallery-container {
    min-height: 400px;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
}

.media-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.media-item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(255, 0, 85, 0.25);
}

.media-item img,
.media-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    padding: 12px 8px 8px;
    font-size: 0.7rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.media-item:hover .media-overlay {
    transform: translateY(0);
}

.empty-state {
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Settings Form */
.settings-form {
    text-align: left;
}

.setting-group {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.setting-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.setting-group h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.setting-group h3 i {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Account Status */
.account-status {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 0.95rem;
}

.account-status.logged-in {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15), rgba(0, 200, 100, 0.1));
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.account-status.logged-in i {
    color: #00ff88;
    font-size: 1.2rem;
}

.account-status.logged-out {
    background: linear-gradient(135deg, rgba(255, 170, 0, 0.15), rgba(200, 100, 0, 0.1));
    border: 1px solid rgba(255, 170, 0, 0.3);
}

.account-status.logged-out i {
    color: #ffaa00;
    font-size: 1.2rem;
}

.login-link-btn,
.logout-link {
    margin-left: auto;
    background: var(--primary-gradient);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.login-link-btn:hover,
.logout-link:hover {
    box-shadow: 0 4px 15px rgba(255, 0, 122, 0.4);
}

/* Language Buttons */
.lang-btn-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 16px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
}

.lang-btn span {
    font-size: 1.3rem;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.lang-btn.active {
    background: var(--primary-gradient);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 20px rgba(255, 0, 122, 0.4);
}

/* Toggle Switches */
.switch-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.switch-container:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
}

.switch-container.disabled {
    opacity: 0.4;
    pointer-events: none;
}

.switch-container .label-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}

.switch-container input {
    display: none;
}

.checkmark {
    width: 52px;
    height: 28px;
    background: linear-gradient(135deg, #ff4444, #cc2222);
    border-radius: 14px;
    position: relative;
    transition: 0.3s;
    flex-shrink: 0;
}

.checkmark:before {
    content: '✕';
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: bold;
    transition: 0.3s;
}

.checkmark:after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

input:checked~.checkmark {
    background: linear-gradient(135deg, #00ff88, #00cc66);
}

input:checked~.checkmark:before {
    content: '✓';
    left: 8px;
    right: auto;
}

input:checked~.checkmark:after {
    left: 28px;
}

.save-btn {
    width: 100%;
    margin-top: 1.5rem;
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    background: var(--primary-gradient);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.save-btn:hover {
    box-shadow: 0 6px 25px rgba(255, 0, 122, 0.5);
}

.save-btn i {
    font-size: 1rem;
}

/* Status & Loading */
.status-message {
    margin-top: 15px;
    min-height: 20px;
    font-size: 0.9rem;
    color: #ff4444;
    text-align: center;
}

.hidden {
    display: none !important;
}

.loading-area {
    display: flex;
    flex-direction: column;
    alignItems: center;
    gap: 15px;
    animation: fadeIn 0.5s;
    text-align: center;
    margin-top: 2rem;
}

.loader {
    width: 40px;
    height: 40px;
    margin: 0 auto;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.success-card {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    animation: fadeIn 0.5s;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(0, 255, 136, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #00ff88;
}

.text-content h3 {
    color: #00ff88;
    margin-bottom: 5px;
}

.text-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Login Page Specifics */
.login-card {
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.login-desc {
    margin-bottom: 2rem;
    opacity: 0.7;
}

.input-field {
    position: relative;
    margin-bottom: 15px;
}

.input-field i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
}

.input-field input {
    padding-left: 45px;
}

.login-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 1rem;
}

.warning-box {
    background: rgba(255, 204, 0, 0.1);
    border: 1px solid rgba(255, 204, 0, 0.3);
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}

.warning-box i {
    color: #ffcc00;
}

.warning-box p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.back-link {
    display: block;
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
}

.back-link:hover {
    color: white;
}

.account-status {
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.account-status.logged-in {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
}

.account-status.logged-out {
    background: rgba(255, 68, 68, 0.1);
    color: #ff4444;
}

.login-link-btn {
    margin-left: auto;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.8rem;
}

.logout-link {
    margin-left: auto;
    color: inherit;
    font-size: 0.8rem;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ... existing styles ... */

.gallery-section {
    margin-bottom: 3rem;
}

.section-title {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

/* ... existing styles ... */

.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.small-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    border-radius: 8px;
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.small-btn:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .app-container {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        height: auto;
        position: fixed;
        bottom: 0;
        top: auto;
        border-right: none;
        border-top: 1px solid var(--glass-border);
        flex-direction: row;
        padding: 10px 15px;
        z-index: 1000;
        justify-content: space-between;
        align-items: center;
        background: rgba(0, 0, 0, 0.95);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .sidebar .logo,
    .sidebar-footer {
        display: none;
    }

    .sidebar nav {
        flex-direction: row;
        justify-content: space-around;
        width: 100%;
    }

    .nav-item {
        flex-direction: column;
        gap: 4px;
        padding: 10px 16px;
        font-size: 0.7rem;
        background: transparent !important;
        border-radius: 12px;
        transition: all 0.3s ease;
    }

    .nav-item i {
        font-size: 1.3rem;
        margin-bottom: 2px;
    }

    .nav-item.active {
        color: var(--primary-color);
        background: rgba(255, 0, 122, 0.15) !important;
    }

    .nav-item.active i {
        transform: scale(1.1);
    }

    .main-content {
        margin-left: 0;
        padding: 1rem 1rem 7rem 1rem;
    }

    .top-header {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 0;
        margin-bottom: 1rem;
        position: relative;
    }

    .top-header h2 {
        font-size: 1.5rem;
        font-weight: 700;
        margin: 0;
        flex: 1;
        order: 1;
    }

    .header-right {
        display: contents;
    }

    .header-right .user-profile {
        display: flex;
        align-items: center;
        gap: 8px;
        order: 2;
        background: rgba(255, 255, 255, 0.1);
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 0.8rem;
    }

    .header-right .user-profile .avatar {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    #headerActions {
        display: flex !important;
        align-items: center;
        gap: 10px;
        width: 100%;
        order: 3;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    #headerActions .small-btn {
        flex: 1;
        justify-content: center;
        padding: 12px 16px;
        font-size: 0.9rem;
        border-radius: 10px;
        white-space: nowrap;
    }

    .glass-card {
        padding: 1.25rem;
        border-radius: 16px;
    }

    .input-group {
        flex-direction: column;
        gap: 12px;
    }

    .input-group input {
        font-size: 0.95rem;
        padding: 14px 16px;
    }

    .input-group button {
        width: 100%;
        padding: 14px;
        font-size: 1rem;
    }

    /* Settings Mobile */
    .setting-group {
        margin-bottom: 1.25rem;
        padding-bottom: 1.25rem;
    }

    .setting-group h3 {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    .account-status {
        flex-wrap: wrap;
        padding: 14px 16px;
        gap: 10px;
    }

    .account-status span {
        flex: 1 1 60%;
    }

    .login-link-btn,
    .logout-link {
        padding: 10px 18px;
        font-size: 0.85rem;
        width: 100%;
        text-align: center;
        margin-top: 8px;
        margin-left: 0;
    }

    /* Language Buttons Mobile */
    .lang-btn-group {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .lang-btn {
        padding: 16px;
        font-size: 1rem;
    }

    .lang-btn span {
        font-size: 1.5rem;
    }

    /* Toggle Switches Mobile */
    .switch-container {
        padding: 12px 14px;
        margin-bottom: 6px;
    }

    .switch-container .label-text {
        font-size: 0.85rem;
        flex: 1;
        padding-right: 10px;
    }

    .checkmark {
        width: 48px;
        height: 26px;
    }

    .checkmark:after {
        width: 18px;
        height: 18px;
    }

    input:checked~.checkmark:after {
        left: 26px;
    }

    .save-btn {
        padding: 16px;
        font-size: 1rem;
        margin-top: 1.25rem;
    }

    /* Gallery Mobile */
    .media-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .gallery-section {
        margin-bottom: 1.5rem;
    }

    .section-title {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .small-btn {
        flex: 1;
        justify-content: center;
        padding: 10px 12px;
        font-size: 0.85rem;
    }

    /* Success Card Mobile */
    .success-card {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }

    .success-card .icon-box {
        margin-bottom: 10px;
    }

    /* User Profile Mobile */
    .user-profile {
        font-size: 0.8rem;
        gap: 8px;
    }

    .user-profile span {
        display: inline;
    }

    .user-profile .avatar {
        width: 36px;
        height: 36px;
    }
}

/* Extra Small Screens */
@media (max-width: 360px) {
    .nav-item {
        padding: 8px 10px;
        font-size: 0.65rem;
    }

    .nav-item i {
        font-size: 1.1rem;
    }

    .glass-card {
        padding: 1rem;
    }

    .lang-btn {
        padding: 14px;
        font-size: 0.9rem;
    }
}

/* ... existing styles ... */

.btn-danger {
    background: linear-gradient(45deg, #ff4444, #cc0000);
}

.btn-danger:hover {
    box-shadow: 0 10px 15px -3px rgba(255, 68, 68, 0.3), 0 4px 6px -2px rgba(255, 68, 68, 0.1);
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    backdrop-filter: blur(8px);
    padding: 1rem;
}

.modal-content {
    position: relative;
    max-width: 400px;
    width: 100%;
}

@media (max-width: 768px) {
    .modal-content {
        max-width: 100%;
    }

    .login-card {
        padding: 1.5rem;
    }

    .login-card .logo h2 {
        font-size: 1.3rem;
    }

    .input-field {
        padding: 12px 14px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .input-field i {
        position: static;
        transform: none;
        flex-shrink: 0;
    }

    .input-field input {
        padding-left: 10px;
        flex: 1;
    }

    .login-btn {
        padding: 14px;
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    opacity: 0.7;
}

.close-modal:hover {
    opacity: 1;
}

/* Helper to hide sections */
.hidden {
    display: none !important;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 14px 24px;
    border-radius: 12px;
    color: white;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    animation: toastSlideIn 0.4s ease, toastFadeOut 0.4s ease 2.6s forwards;
    pointer-events: auto;
}

.toast.success {
    border-left: 4px solid #00ff88;
}

.toast.success i {
    color: #00ff88;
    font-size: 1.2rem;
}

.toast.error {
    border-left: 4px solid #ff4444;
}

.toast.error i {
    color: #ff4444;
    font-size: 1.2rem;
}

.toast.info {
    border-left: 4px solid #00aaff;
}

.toast.info i {
    color: #00aaff;
    font-size: 1.2rem;
}

@keyframes toastSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes toastFadeOut {
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}