/* 🎮 MOD SUGGESTIONS STYLES 🎮 */
/* Extends the existing dashboard.css styles */

/* HEADER IMPROVEMENTS */
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.header-left {
    flex: 1;
}

/* USER WIDGET */
.user-widget {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-login {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(45deg, #7289da, #5865f2);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(114, 137, 218, 0.3);
    white-space: nowrap;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(114, 137, 218, 0.5);
}

.user-dropdown {
    position: relative;
}

.user-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.user-toggle:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(0, 0, 0, 0.7);
}

.avatar-sm {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    object-fit: cover;
}

.avatar-lg {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.user-toggle.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    min-width: 280px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 0.5rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.dropdown-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
}

.user-info-text {
    flex: 1;
}

.user-info-text strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.user-info-text small {
    font-size: 0.85rem;
    opacity: 0.7;
}

.dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0.5rem 0;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-size: 0.9rem;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.dropdown-item.admin-item {
    color: #a855f7;
}

.dropdown-item.admin-item:hover {
    background: rgba(168, 85, 247, 0.1);
}

.dropdown-item.logout-item {
    color: #ff4081;
}

.dropdown-item.logout-item:hover {
    background: rgba(255, 64, 129, 0.1);
}

.server-interest-item input[type="checkbox"] {
    margin-right: 0.5rem;
}

/* INLINE STATS */
.stats-inline {
    max-width: 1200px;
    margin: 0 auto 1rem;
    padding: 0.75rem 1rem;
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-inline-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.stat-inline-item .minecraft-icon-small {
    width: 20px;
    height: 20px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.stat-inline-item strong {
    font-size: 1.1rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .stats-inline {
        gap: 1rem;
        font-size: 0.85rem;
    }
}

/* MAIN LAYOUT */
.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem 2rem;
}

/* STICKY CTA BAR */
.cta-bar {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.cta-left-group {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.interest-toggle-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: calc(0.875rem - 2px) 1.5rem;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    color: rgba(255, 255, 255, 0.8);
    box-sizing: border-box;
}

.interest-toggle-pill:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    transform: translateY(-2px);
}

.interest-toggle-pill.active {
    background: rgba(0, 212, 170, 0.15);
    border-color: #00d4aa;
    color: #00d4aa;
    box-shadow: 0 0 15px rgba(0, 212, 170, 0.2);
}

.interest-toggle-pill.active:hover {
    background: rgba(0, 212, 170, 0.25);
    box-shadow: 0 0 20px rgba(0, 212, 170, 0.4);
}

.interest-toggle-pill input {
    display: none !important;
}

.pill-text {
    font-weight: 700;
    font-size: 0.95rem;
}

.pill-status {
    font-size: 1rem;
    animation: popIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.btn-suggest-main {
    padding: 0.875rem 2rem;
    background: linear-gradient(45deg, #ff006e, #ff4081);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 110, 0.4);
    white-space: nowrap;
}

.btn-suggest-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 0, 110, 0.6);
    background: linear-gradient(45deg, #ff4081, #ff006e);
}

.controls-group {
    display: flex;
    gap: 1rem;
    flex: 1;
    align-items: center;
}

@media (max-width: 768px) {
    .cta-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-suggest-main {
        width: 100%;
    }

    .controls-group {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* NAVIGATION */
.navigation {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 600;
    background: transparent;
    cursor: pointer;
}

.nav-link:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.nav-link.active {
    color: #fff;
    border-color: #ff006e;
    background: rgba(255, 0, 110, 0.2);
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.4);
}

.help-link {
    border-color: rgba(100, 200, 255, 0.3);
}

.help-link:hover {
    border-color: rgba(100, 200, 255, 0.6);
    background: rgba(100, 200, 255, 0.1);
}

/* MODAL STYLES */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    z-index: 2001;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(255, 0, 110, 0.3);
    border-color: #ff006e;
    transform: rotate(90deg);
}

.modal-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    text-align: center;
}

/* AUTHENTICATION SECTION */
.auth-section {
    margin-bottom: 2rem;
}

.auth-card {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 4px 16px rgba(255, 255, 255, 0.1);
}

.auth-card.user-info {
    background: rgba(0, 150, 0, 0.2);
    border-color: rgba(0, 255, 100, 0.5);
}

.auth-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.auth-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.auth-button,
.logout-button {
    background: linear-gradient(45deg, #7289da, #5865f2);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(114, 137, 218, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.auth-button:hover,
.logout-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(114, 137, 218, 0.5);
}

.logout-button {
    background: linear-gradient(45deg, #ff006e, #dc3545);
    box-shadow: 0 4px 15px rgba(255, 0, 110, 0.3);
}

.logout-button:hover {
    box-shadow: 0 8px 25px rgba(255, 0, 110, 0.5);
}

.btn-admin {
    display: block;
    width: 100%;
    margin-top: 1rem;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #9333ea, #7e22ce);
    color: white;
    border: 2px solid rgba(147, 51, 234, 0.5);
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3);
}

.btn-admin:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(147, 51, 234, 0.5);
    background: linear-gradient(45deg, #a855f7, #9333ea);
}

.discord-icon {
    font-size: 1.2rem;
}

.user-avatar {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    margin-right: 0.5rem;
    background-image: url('../images/minecraft/Slot_Frame.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 6px;
    box-sizing: border-box;

    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    object-fit: cover;
}

.user-info {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* MINECRAFT SERVER INTEREST SECTION */
.minecraft-interest-section {
    margin: 1rem 0;
    padding: 1.2rem;
    background-image: url('../images/minecraft/Empty_Toolip.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;

    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.interest-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.minecraft-icon {
    font-size: 1.1rem;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.3));
}

.interest-toggle {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 32px;
    height: 32px;
    cursor: pointer;
}

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

.toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Remove the slider ball - we only show icons now */

.toggle-switch input:checked+.toggle-slider {
    /* Checked state - show green glow */
    filter: drop-shadow(0 0 4px rgba(50, 205, 50, 0.6));
}

.toggle-icon {
    position: absolute;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

/* Show only the cancel icon when unchecked */
.toggle-switch input:not(:checked)+.toggle-slider .toggle-icon.off {
    opacity: 1;
}

.toggle-switch input:not(:checked)+.toggle-slider .toggle-icon.on {
    opacity: 0;
}

/* Show only the confirm icon when checked */
.toggle-switch input:checked+.toggle-slider .toggle-icon.off {
    opacity: 0;
}

.toggle-switch input:checked+.toggle-slider .toggle-icon.on {
    opacity: 1;
}

.interest-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* MINECRAFT TEXTURE ICONS */
.minecraft-icon-texture {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
    vertical-align: middle;
}

/* Large Minecraft UI Icons */
.minecraft-icon-large {
    display: inline-block;
    width: 32px;
    height: 32px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
    vertical-align: middle;
}

/* Small Minecraft UI Icons */
.minecraft-icon-small {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
    vertical-align: middle;
}

/* Specific Minecraft Icons */
.minecraft-icon-texture.emerald,
.minecraft-icon-large.emerald,
.minecraft-icon-small.emerald {
    background-image: url('../images/minecraft/Emerald.png');
}

.minecraft-icon-texture.enchanted-book,
.minecraft-icon-large.enchanted-book,
.minecraft-icon-small.enchanted-book {
    background-image: url('../images/minecraft/Enchanted_Book.png');
}

.minecraft-icon-texture.writable-book,
.minecraft-icon-large.writable-book,
.minecraft-icon-small.writable-book {
    background-image: url('../images/minecraft/Writable_Book.png');
}

.minecraft-icon-texture.heart-full,
.minecraft-icon-large.heart-full,
.minecraft-icon-small.heart-full {
    background-image: url('../images/minecraft/Heart_Full.png');
}

.minecraft-icon-texture.plus-sign,
.minecraft-icon-large.plus-sign,
.minecraft-icon-small.plus-sign {
    background-image: url('../images/minecraft/Plus_Sign.png');
}

.minecraft-icon-texture.confirm,
.minecraft-icon-large.confirm,
.minecraft-icon-small.confirm {
    background-image: url('../images/minecraft/Confirm.png');
}

.minecraft-icon-texture.cancel,
.minecraft-icon-large.cancel,
.minecraft-icon-small.cancel {
    background-image: url('../images/minecraft/Cancel.png');
}

.minecraft-icon-texture.spyglass,
.minecraft-icon-large.spyglass,
.minecraft-icon-small.spyglass {
    background-image: url('../images/minecraft/Spyglass.png');
}

.minecraft-icon-texture.name-tag,
.minecraft-icon-large.name-tag,
.minecraft-icon-small.name-tag {
    background-image: url('../images/minecraft/Name_Tag.png');
}

.minecraft-icon-texture.firework,
.minecraft-icon-large.firework,
.minecraft-icon-small.firework {
    background-image: url('../images/minecraft/Firework_Rocket.png');
}

.minecraft-icon-texture.end-crystal,
.minecraft-icon-large.end-crystal,
.minecraft-icon-small.end-crystal {
    background-image: url('../images/minecraft/End_Crystal.png');
}

.minecraft-icon-texture.hero,
.minecraft-icon-large.hero,
.minecraft-icon-small.hero {
    background-image: url('../images/minecraft/Hero_Of_The_Village.png');
}

.minecraft-icon-texture.clock,
.minecraft-icon-large.clock,
.minecraft-icon-small.clock {
    background-image: url('../images/minecraft/Clock.png');
}

.minecraft-icon-texture.feather,
.minecraft-icon-large.feather,
.minecraft-icon-small.feather {
    background-image: url('../images/minecraft/Feather.png');
}

.minecraft-icon-texture.realms-link,
.minecraft-icon-large.realms-link,
.minecraft-icon-small.realms-link {
    background-image: url('../images/minecraft/Realms_Link.png');
}

/* MINECRAFT-THEMED BUTTONS */
.btn-minecraft {
    background:
        linear-gradient(to bottom, rgba(139, 139, 139, 0.2) 0%, rgba(105, 105, 105, 0.2) 50%, rgba(64, 64, 64, 0.3) 100%),
        rgba(128, 128, 128, 0.3);
    border: 2px solid rgba(169, 169, 169, 0.5);

    color: #fff;
    font-family: inherit;
    font-weight: 600;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-minecraft:hover {
    background:
        linear-gradient(to bottom, rgba(169, 169, 169, 0.3) 0%, rgba(128, 128, 128, 0.3) 50%, rgba(105, 105, 105, 0.4) 100%),
        rgba(150, 150, 150, 0.4);
    border-color: rgba(192, 192, 192, 0.7);
    transform: translateY(-1px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 3px 6px rgba(0, 0, 0, 0.4);
}

.btn-minecraft:active {
    transform: translateY(1px);
    box-shadow:
        inset 0 2px 4px rgba(0, 0, 0, 0.2),
        0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-minecraft.primary {
    background:
        linear-gradient(to bottom, rgba(50, 150, 50, 0.3) 0%, rgba(34, 139, 34, 0.4) 50%, rgba(0, 100, 0, 0.5) 100%),
        rgba(50, 205, 50, 0.3);
    border-color: rgba(34, 139, 34, 0.7);
}

.btn-minecraft.primary:hover {
    background:
        linear-gradient(to bottom, rgba(60, 179, 113, 0.4) 0%, rgba(50, 150, 50, 0.5) 50%, rgba(34, 139, 34, 0.6) 100%),
        rgba(60, 179, 113, 0.4);
}

.btn-minecraft.danger {
    background:
        linear-gradient(to bottom, rgba(139, 0, 0, 0.3) 0%, rgba(100, 0, 0, 0.4) 50%, rgba(64, 0, 0, 0.5) 100%),
        rgba(178, 34, 34, 0.3);
    border-color: rgba(139, 0, 0, 0.7);
}

/* Toggle icons with Minecraft textures */
.toggle-icon.minecraft {
    width: 28px;
    height: 28px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    font-size: 0;
    display: inline-block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.toggle-icon.minecraft.off {
    background-image: url('../images/minecraft/Cancel.png');
}

.toggle-icon.minecraft.on {
    background-image: url('../images/minecraft/Confirm.png');
}

/* ENHANCED USER PROFILE STYLES */
.auth-card.user-profile {
    background: linear-gradient(135deg, rgba(0, 100, 200, 0.15) 0%, rgba(100, 0, 200, 0.15) 100%);
    border: 2px solid rgba(100, 200, 255, 0.4);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.user-profile-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.user-avatar-container {
    position: relative;
}

.user-avatar-enhanced {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid rgba(100, 200, 255, 0.6);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.user-avatar-enhanced:hover {
    transform: scale(1.05);
}

.server-verified-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: #00d4aa;
    border-radius: 50%;
    padding: 4px;
    font-size: 12px;
    border: 2px solid rgba(0, 0, 0, 0.8);
    box-shadow: 0 2px 8px rgba(0, 212, 170, 0.4);
}

.user-avatar-placeholder {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border: 3px solid rgba(100, 200, 255, 0.6);
}

.user-info-enhanced {
    text-align: left;
    flex-grow: 1;
}

.user-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.verified-badge {
    font-size: 1rem;
    color: #00d4aa;
    text-shadow: 0 0 8px rgba(0, 212, 170, 0.6);
}

.user-status {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.logout-button-enhanced {
    background: linear-gradient(45deg, #ff4757, #ff3742);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logout-button-enhanced:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.5);
    background: linear-gradient(45deg, #ff3742, #ff2f3a);
}

.logout-icon {
    font-size: 1rem;
}

/* ENHANCED SUGGESTION ITEM STYLES */
.mod-icon {
    width: 32px;
    height: 32px;

    margin-right: 0.5rem;
    vertical-align: middle;
    background-image: url('../images/minecraft/Slot_Frame.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 4px;
    box-sizing: border-box;

    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    object-fit: cover;
}

.mod-icon-placeholder {
    display: inline-block;
    width: 32px;
    height: 32px;
    position: relative;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.mod-icon-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/minecraft/Slot_Frame.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Make the Minecraft texture icon centered within the slot frame */
.mod-icon-placeholder.minecraft-icon-texture {
    padding: 6px;
    box-sizing: border-box;
}

.suggested-by-enhanced {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.user-mini-profile {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.user-mini-avatar {
    width: 32px;
    height: 32px;

    background-image: url('../images/minecraft/Slot_Frame.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 3px;
    box-sizing: border-box;

    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    object-fit: cover;
}

.user-mini-avatar-placeholder {
    width: 32px;
    height: 32px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-mini-avatar-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/minecraft/Slot_Frame.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Make the Minecraft texture icon centered within the slot frame */
.user-mini-avatar-placeholder.minecraft-icon-texture {
    padding: 6px;
    box-sizing: border-box;
}

.user-mini-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
}

.mini-verified {
    font-size: 0.7rem;
    color: #00d4aa;
}

/* TUTORIAL SECTION */
.tutorial-section {
    margin-bottom: 2rem;
    width: 100%;
}

.tutorial-section .tutorial-card {
    background: rgba(30, 30, 60, 0.7);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(100, 200, 255, 0.4);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 4px 16px rgba(100, 200, 255, 0.2);
    transition: all 0.3s ease;
    animation: slide-in-up 0.8s ease-out;
    text-align: left;
    position: relative;
}

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

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

.tutorial-section .tutorial-card:hover {
    border-color: rgba(100, 200, 255, 0.6);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.5),
        0 8px 20px rgba(100, 200, 255, 0.3);
}

.tutorial-section .tutorial-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    cursor: pointer;
    user-select: none;
    width: 100%;
    padding: 0;
}

.tutorial-section .tutorial-header h3 {
    color: #fff;
    font-size: 1.1rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    font-weight: 600;
}

.tutorial-section .tutorial-icon {
    font-size: 1.3rem;
    color: #64c8ff;
}

.tutorial-section .tutorial-toggle {
    background: linear-gradient(45deg, rgba(100, 200, 255, 0.2), rgba(150, 150, 255, 0.3));
    border: 2px solid rgba(100, 200, 255, 0.5);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(100, 200, 255, 0.2);
}

.tutorial-section .tutorial-toggle:hover {
    background: linear-gradient(45deg, rgba(100, 200, 255, 0.4), rgba(150, 150, 255, 0.5));
    border-color: rgba(100, 200, 255, 0.8);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(100, 200, 255, 0.4);
}

.tutorial-section .tutorial-toggle {
    animation: subtle-pulse 3s ease-in-out infinite;
}

@keyframes subtle-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(100, 200, 255, 0.4);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(100, 200, 255, 0);
    }
}

.tutorial-section .tutorial-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    opacity: 0;
    width: 100%;
}

.tutorial-section .tutorial-content.expanded {
    max-height: 2000px;
    opacity: 1;
    padding-top: 1rem;
}

.tutorial-section .tutorial-steps {
    margin-bottom: 2rem;
    width: 100%;
}

.tutorial-section .tutorial-step {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
    width: 100%;
}

.step-number {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.step-content h4 {
    color: #fff;
    font-size: 1rem;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.step-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.tutorial-link {
    color: #64c8ff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.tutorial-link:hover {
    color: #32b4ff;
    text-decoration: underline;
}

.example-url {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.75rem;
    margin-top: 0.5rem;
    font-family: 'Courier New', monospace;
}

.example-url code {
    color: #64c8ff;
    font-size: 0.85rem;
}

.tutorial-tips {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.25rem;
    margin-top: 1.5rem;
}

.tutorial-tips h4 {
    color: #ffd700;
    font-size: 1rem;
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tutorial-tips ul {
    margin: 0;
    padding-left: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.tutorial-tips li {
    margin-bottom: 0.5rem;
    line-height: 1.4;
    font-size: 0.9rem;
}

.tutorial-tips li strong {
    color: #fff;
    font-weight: 600;
}

.tutorial-link {
    color: #64c8ff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.tutorial-link:hover {
    color: #32b4ff;
    text-decoration: underline;
}

.example-url {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.75rem;
    margin-top: 0.5rem;
    font-family: 'Courier New', monospace;
}

.example-url code {
    color: #64c8ff;
    font-size: 0.85rem;
}

/* FAB REMOVED - Using sticky CTA bar instead */

/* STATS SECTION ENHANCEMENTS */
.kpi-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.kpi-card {
    animation: slide-in-up 0.6s ease-out;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kpi-card:hover {
    transform: translateY(-2px);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 8px 20px rgba(255, 255, 255, 0.1) !important;
}

.kpi-card.total-suggestions {
    animation-delay: 0.1s;
}

.kpi-card.total-votes {
    animation-delay: 0.2s;
}

.kpi-card.verified-mods {
    animation-delay: 0.3s;
}

/* SUGGESTION FORM */
.suggestion-section {
    margin-bottom: 2rem;
}

.suggestion-card {
    padding: 2rem !important;
}

.suggestion-card .section-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #fff;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff006e;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
    max-height: 120px;
}

.form-help {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.suggest-button {
    background: linear-gradient(45deg, #ff006e, #8338ec);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 110, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
}

.suggest-button:hover:not(:disabled) {
    box-shadow: 0 8px 25px rgba(255, 0, 110, 0.5);
}

.suggest-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.button-icon {
    font-size: 1.2rem;
}

/* CONTROLS SECTION */
.controls-section {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    align-items: center;
}

.sort-controls,
.search-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sort-controls label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.sort-controls select,
.search-controls input {
    padding: 0.7rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    font-family: inherit;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.sort-controls select:focus,
.search-controls input:focus {
    outline: none;
    border-color: #ff006e;
    box-shadow: 0 0 15px rgba(255, 0, 110, 0.3);
}

.search-controls input {
    min-width: 200px;
}

/* LOADING & ERROR STATES */
.loading-container,
.error-container {
    text-align: center;
    padding: 3rem;
}

.loading-spinner .spinner-ring {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top: 4px solid #ff006e;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

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

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

.loading-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

/* SUGGESTIONS GRID */
.suggestions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 375px) {
    .suggestions-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .suggestions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .suggestions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* SUGGESTION CARD */
.suggestion-item {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.25rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.suggestion-item:hover {
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    grid-column: 1 / -1;
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.empty-subtext {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Card Summary (always visible) */
.card-summary {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.mod-icon {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.1);
}

.card-summary-content {
    flex: 1;
    min-width: 0;
}

.mod-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
    text-decoration: none;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mod-title:hover {
    color: #ff006e;
}

.mod-summary {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    margin-top: 0.25rem;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mod-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

.meta-item {
    color: rgba(255, 255, 255, 0.6);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.mod-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-top: 0.5rem;
}

.category-pill {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background: rgba(255, 0, 110, 0.2);
    color: #ff006e;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(255, 0, 110, 0.3);
}

.category-pill.more {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.2);
}

.card-vote-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

/* Card Details (expandable) */
.card-details {
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0.75rem;
}

.card-details[hidden] {
    display: none;
}

.suggestion-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.suggested-by {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.mod-url {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    word-break: break-word;
    overflow-wrap: break-word;
    margin-top: 0.5rem;
}

.expand-btn {
    width: 100%;
    margin-top: 0.75rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.expand-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

.expand-btn .arrow {
    transition: transform 0.2s ease;
}

.expand-btn.expanded .arrow {
    transform: rotate(180deg);
}

.validation-badge {
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.validation-badge.exists {
    background: rgba(0, 255, 100, 0.2);
    color: #00ff64;
    border: 1px solid rgba(0, 255, 100, 0.3);
}

.validation-badge.pending {
    background: rgba(255, 165, 0, 0.2);
    color: #ffa500;
    border: 1px solid rgba(255, 165, 0, 0.3);
}

.validation-badge.failed {
    background: rgba(255, 0, 0, 0.2);
    color: #ff4444;
    border: 1px solid rgba(255, 0, 0, 0.3);
}

/* ADMIN & STATUS BADGES */
.admin-badge {
    padding: 0.2rem 0.6rem;
    margin-left: 0.4rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.3), rgba(234, 179, 8, 0.3));
    color: #fbbf24;
    border: 1px solid rgba(234, 179, 8, 0.5);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.status-badge {
    padding: 0.2rem 0.6rem;
    margin-left: 0.4rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.status-badge.approved {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-badge.rejected {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.status-badge.server-added {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-badge.server-planned {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

/* Vote Button (Horizontal Pill Design) */
.vote-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 44px;
    padding: 0.5rem 1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    white-space: nowrap;
}

.vote-button:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.vote-button:focus {
    outline: 2px solid rgba(255, 0, 110, 0.5);
    outline-offset: 2px;
}

.vote-button.voted {
    background: linear-gradient(90deg, #ff006e, #ff4081);
    border-color: #ff006e;
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 0, 110, 0.4);
}

.vote-button.voted:hover {
    box-shadow: 0 6px 20px rgba(255, 0, 110, 0.6);
}

.vote-icon {
    font-size: 1.2rem;
}

.vote-count {
    font-weight: 700;
    font-size: 1rem;
    color: inherit;
}

.vote-text {
    font-size: 0.9rem;
    display: none;
}

.vote-button:hover .vote-text {
    display: inline;
}

.suggestion-note {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid #ff006e;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

/* EDIT NOTE FUNCTIONALITY */
.edit-buttons {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
    justify-content: flex-end;
}

.edit-note-btn,
.add-note-btn,
.delete-suggestion-btn {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.edit-note-btn:hover,
.add-note-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.5);
}

.delete-suggestion-btn {
    background: rgba(255, 50, 50, 0.1);
    border-color: rgba(255, 50, 50, 0.3);
    margin-left: 0.5rem;
}

.delete-suggestion-btn:hover {
    background: rgba(255, 50, 50, 0.2);
    color: rgba(255, 100, 100, 0.9);
    border-color: rgba(255, 50, 50, 0.5);
}

.edit-form {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.edit-form textarea {
    width: 100%;
    min-height: 80px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    padding: 0.8rem;
    color: #fff;
    font-family: inherit;
    font-size: 0.9rem;
    resize: vertical;
    box-sizing: border-box;
}

.edit-form textarea:focus {
    outline: none;
    border-color: #ff006e;
    box-shadow: 0 0 0 2px rgba(255, 0, 110, 0.2);
}

.edit-form-buttons {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.8rem;
    justify-content: flex-end;
}

.save-btn,
.cancel-btn {
    padding: 0.4rem 1rem;
    border: none;
    border-radius: 5px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.save-btn {
    background: #ff006e;
    color: white;
}

.save-btn:hover {
    background: #e6005f;
    transform: translateY(-1px);
}

.cancel-btn {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cancel-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

/* LOAD MORE BUTTON */
.load-more-container {
    text-align: center;
    margin-top: 2rem;
}

.load-more-button {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* MESSAGE CONTAINER */
.message-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    max-width: 400px;
}

.message {
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 0.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: slideInRight 0.3s ease;
}

.message.success {
    border-color: #00ff64;
    background: rgba(0, 255, 100, 0.2);
}

.message.error {
    border-color: #ff4444;
    background: rgba(255, 68, 68, 0.2);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

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

/* MISSING FORM STYLES */
.create-section {
    margin-bottom: 2rem;
}

.create-card {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.create-card h3 {
    color: #fff;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.suggestion-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #ff006e;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.3);
}

.input-hint {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}

.char-count {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: right;
    margin-top: 0.5rem;
}

/* FILTER SECTION STYLES */
.filter-section {
    margin-bottom: 2rem;
}

.filter-card {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.filter-controls {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.search-group,
.sort-group,
.filter-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-input,
.sort-select,
.filter-select {
    padding: 0.8rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    font-family: inherit;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.search-input:focus,
.sort-select:focus,
.filter-select:focus {
    outline: none;
    border-color: #ff006e;
    box-shadow: 0 0 15px rgba(255, 0, 110, 0.3);
}

.search-input {
    min-width: 200px;
}

.search-btn {
    background: linear-gradient(45deg, #ff006e, #8338ec);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 110, 0.4);
}

/* SUGGESTIONS SECTION */
.suggestions-section {
    margin-bottom: 2rem;
}

.suggestions-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.suggestions-header h2 {
    color: #fff;
    font-size: 1.5rem;
    margin: 0;
}

.view-toggle {
    display: flex;
    gap: 0.5rem;
}

.toggle-btn {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
}

.toggle-btn.active {
    background: linear-gradient(45deg, #ff006e, #8338ec);
    border-color: #ff006e;
    color: #fff;
}

/* SUGGESTIONS GRID */
.suggestions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.loading-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: rgba(255, 255, 255, 0.7);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top: 4px solid #ff006e;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .controls-section {
        flex-direction: column;
        align-items: stretch;
    }

    .sort-controls,
    .search-controls {
        justify-content: space-between;
    }

    .search-controls input {
        min-width: auto;
        flex: 1;
    }

    .suggestion-header {
        flex-direction: column;
        gap: 1rem;
    }

    .vote-section {
        align-self: flex-end;
    }

    .filter-controls {
        flex-direction: column;
        gap: 1rem;
    }

    .search-group,
    .sort-group,
    .filter-group {
        width: 100%;
        justify-content: space-between;
    }

    .search-input {
        min-width: auto;
        flex: 1;
    }

    .suggestions-grid {
        grid-template-columns: 1fr;
    }

    .suggestions-header {
        flex-direction: column;
        align-items: stretch;
    }

    /* Tutorial mobile improvements */
    .tutorial-step {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .step-number {
        align-self: center;
    }

    .tutorial-tips {
        padding: 1rem;
    }

    .example-url {
        padding: 0.5rem;
        font-size: 0.8rem;
        overflow-x: auto;
    }

    /* Enhanced user profile mobile */
    .user-profile-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .user-info-enhanced {
        text-align: center;
    }

    /* Mini profile mobile */
    .user-mini-profile {
        padding: 0.25rem 0.6rem;
        font-size: 0.8rem;
    }

    .user-mini-avatar,
    .user-mini-avatar-placeholder {
        width: 20px;
        height: 20px;
    }
}

/* PAGINATION STYLES */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1rem;
}

.page-btn {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.page-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-info {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    padding: 0 1rem;
}

/* FOOTER STYLES */
.dashboard-footer {
    margin-top: 3rem;
    padding: 2rem 0;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* MODAL RESPONSIVE */
@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 1.5rem;
        max-height: 85vh;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .pagination {
        flex-direction: column;
        gap: 0.5rem;
    }
}