/* Vouches Page Styles */
:root {
    --primary-color: #6c5ce7;
    --primary-dark: #5649c0;
    --accent-color: #00cec9;
    --text-color: #2d3436;
    --text-light: #636e72;
    --background: #ffffff;
    --background-alt: #f5f6fa;
    --card-background: #ffffff;
    --border-color: #dfe6e9;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --transition: all 0.3s ease;
}

/* Dark mode variables */
[data-theme="dark"] {
    --text-color: #f5f6fa;
    --text-light: #dfe6e9;
    --background: #1e272e;
    --background-alt: #2d3436;
    --card-background: #2d3436;
    --border-color: #3d4852;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.2);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.3);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.3);
}

/* Fallback pour prefers-color-scheme */
@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) {
        --text-color: #f5f6fa;
        --text-light: #dfe6e9;
        --background: #1e272e;
        --background-alt: #2d3436;
        --card-background: #2d3436;
        --border-color: #3d4852;
        --shadow-sm: 0 2px 4px rgba(0,0,0,0.2);
        --shadow-md: 0 4px 6px rgba(0,0,0,0.3);
        --shadow-lg: 0 10px 15px rgba(0,0,0,0.3);
    }
}

/* Base styles */
body {
    background-color: var(--background);
    color: var(--text-color);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.container {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

/* Hero section */
.hero {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 4rem 0;
    text-align: center;
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    .hero {
        padding: 3rem 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .hero .subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 300px;
        margin: 1.5rem auto 0;
    }
    
    .stat-card {
        padding: 1.2rem;
    }
    
    .stat-card h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2.5rem 0.5rem;
    }
    
    .vouch-intro-details {
        padding: 0 0.5rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero .subtitle {
        font-size: 0.9rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
}

.hero h1 {
    font-size: 2.5rem;
    margin: 0 0 1rem;
    font-weight: 700;
}

.hero .subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-card i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.stat-card h3 {
    font-size: 2rem;
    margin: 0.5rem 0;
    font-weight: 700;
}

.stat-card p {
    margin: 0;
    opacity: 0.9;
}

/* Service categories */
.service-categories {
    background: var(--background-alt);
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
}

.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.tab-btn {
    background: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-color);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: var(--transition);
}

.tab-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.tab-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Search and filter */
.search-filter {
    background: var(--background);
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
}

.search-box {
    position: relative;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.search-box input {
    background: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-color);
    font-size: 1rem;
    padding: 1rem 3rem 1rem 1.5rem;
    width: 100%;
    transition: var(--transition);
}

.search-box input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
    outline: none;
}

.search-box i {
    color: var(--text-light);
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
}

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

.filter-options select {
    background: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-color);
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0.75rem 2rem 0.75rem 1rem;
    transition: var(--transition);
}

.filter-options select:focus {
    border-color: var(--primary-color);
    outline: none;
}

.rating-filter {
    display: flex;
    gap: 0.5rem;
}

.add-review-btn {
    background: linear-gradient(135deg, #5865F2, #7289DA);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.3);
}

.add-review-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(88, 101, 242, 0.4);
    background: linear-gradient(135deg, #4752C4, #5865F2);
}

.add-review-btn i {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .add-review-btn {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
    }
}

.star-btn {
    background: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-light);
    cursor: pointer;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    transition: var(--transition);
}

.star-btn:hover,
.star-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Vouches grid - Amélioration du layout */
.vouches-grid {
    padding: 2rem 0;
    min-height: 60vh;
    background: var(--background);
    width: 100%;
    overflow-x: hidden;
}

.vouches-grid .container {
    max-width: 100%;
    padding: 0 1rem;
    margin: 0 auto;
    overflow-x: hidden;
}

.vouches-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Amélioration des cartes d'avis */
.vouch-card {
    background: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 1.5rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
    margin: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    will-change: transform;
}

.vouch-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.vouch-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.vouch-avatar {
    flex-shrink: 0;
}

.vouch-avatar img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.vouch-card:hover .vouch-avatar img {
    transform: scale(1.05);
}

.vouch-info {
    flex: 1;
    min-width: 0; /* Pour éviter le débordement */
}

.vouch-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.discord-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, #5865F2, #7289DA);
    color: white;
    padding: 0.3rem 0.7rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(88, 101, 242, 0.3);
}

.discord-badge i {
    font-size: 1rem;
}

.vouch-service {
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vouch-service::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

.vouch-rating {
    color: #f1c40f;
    font-size: 1.2rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.vouch-content {
    flex: 1;
    margin-bottom: 1.25rem;
}

.vouch-text {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vouch-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

.vouch-date, .vouch-verified {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vouch-verified {
    color: #2ecc71;
    font-weight: 500;
}

.vouch-platform {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: rgba(88, 101, 242, 0.1);
    color: #5865F2;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

[data-theme="dark"] .vouch-platform {
    background: rgba(88, 101, 242, 0.2);
    color: #7289DA;
}

.vouch-verified i {
    font-size: 1.1rem;
}

/* Amélioration du bouton "Load More" */
.load-more-btn {
    background: var(--primary-color);
    border: none;
    border-radius: var(--radius-md);
    color: white;
    cursor: pointer;
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 3rem auto;
    padding: 1rem 2.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    width: fit-content;
    min-width: 200px;
}

.load-more-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.load-more-btn:active {
    transform: translateY(0);
}

/* Responsive design amélioré */
@media (min-width: 2000px) {
    .vouches-container {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (min-width: 1600px) and (max-width: 1999px) {
    .vouches-container {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (min-width: 1200px) and (max-width: 1599px) {
    .vouches-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 900px) and (max-width: 1199px) {
    .vouches-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 600px) and (max-width: 899px) {
    .vouches-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 1.5rem;
    }
}

@media (max-width: 599px) {
    .vouches-grid .container {
        padding: 0 0.5rem;
    }
    
    .vouches-container {
        grid-template-columns: 1fr;
        padding: 0;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
    }
    
    .hero {
        padding: 2.5rem 0.5rem;
    }
    
    .search-filter .container,
    .service-categories .container,
    .service-stats .container {
        padding: 0 0.5rem;
    }
    
    .vouch-card {
        padding: 1rem;
        margin: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .vouch-header {
        margin-bottom: 1rem;
        padding-bottom: 0.8rem;
    }
    
    .vouch-avatar img {
        width: 48px;
        height: 48px;
    }
    
    .vouch-name {
        font-size: 1rem;
    }
    
    .vouch-service {
        font-size: 0.85rem;
    }
    
    .vouch-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .vouch-meta {
        font-size: 0.85rem;
        padding-top: 0.8rem;
    }
    
    .search-box input {
        padding: 0.8rem 2.5rem 0.8rem 1rem;
        font-size: 0.95rem;
    }
    
    .filter-options {
        flex-direction: column;
        gap: 0.8rem;
        align-items: stretch;
    }
    
    .filter-options select {
        width: 100%;
        padding: 0.8rem 1rem;
    }
    
    .rating-filter {
        justify-content: center;
    }
    
    .tabs {
        flex-wrap: wrap;
        gap: 0.3rem;
    }
    
    .tab-btn {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }
    
    .load-more-btn,
    .show-all-btn {
        margin: 1.5rem auto;
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
        min-width: 150px;
        width: auto;
    }
    
    .load-buttons {
        padding: 0 0.5rem;
        gap: 0.8rem;
    }
}

/* Animation d'apparition des cartes */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vouch-card {
    animation: slideIn 0.3s ease-out forwards;
}

/* Optimisation performances */
* {
    -webkit-tap-highlight-color: transparent;
}

img {
    max-width: 100%;
    height: auto;
}

.vouch-card,
.stat-card,
.tab-btn,
.nav-btn {
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Style pour le mode sombre amélioré */
[data-theme="dark"] .vouch-card,
@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) .vouch-card {
        background: var(--card-background);
        border-color: var(--border-color);
    }
}

[data-theme="dark"] .vouch-card:hover,
@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) .vouch-card:hover {
        border-color: var(--primary-color);
        background: var(--background-alt);
    }
}

[data-theme="dark"] .vouch-header,
[data-theme="dark"] .vouch-meta,
@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) .vouch-header,
    :root:not([data-theme="light"]) .vouch-meta {
        border-color: var(--border-color);
    }
}

[data-theme="dark"] .vouch-name,
@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) .vouch-name {
        color: var(--text-color);
    }
}

[data-theme="dark"] .vouch-text,
@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) .vouch-text {
        color: var(--text-light);
    }
}

/* Amélioration de l'accessibilité */
.vouch-card:focus-within {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Style d'impression amélioré */
@media print {
    .vouches-container {
        display: block;
    }

    .vouch-card {
        break-inside: avoid;
        margin-bottom: 1.5rem;
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .vouch-avatar img {
        border: 1px solid #ddd;
    }
}

/* Service statistics */
.service-stats {
    background: var(--background-alt);
    padding: 3rem 0;
}

.service-stats h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.service-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.service-stat {
    background: var(--card-background);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.service-stat h3 {
    margin: 0 0 1rem;
    font-size: 1.1rem;
}

.stat-bar {
    position: relative;
    height: 8px;
    background: var(--border-color);
    border-radius: var(--radius-sm);
    margin-bottom: 0.5rem;
}

.stat-bar .progress {
    position: absolute;
    height: 100%;
    background: var(--primary-color);
    border-radius: var(--radius-sm);
    transition: width 1s ease;
}

.stat-bar .count {
    color: var(--text-light);
    font-size: 0.9rem;
}

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

.vouch-card {
    animation: fadeIn 0.3s ease-out;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus styles */
:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

:focus:not(:focus-visible) {
    outline: none;
}

/* Print styles */
@media print {
    .hero,
    .service-categories,
    .search-filter,
    .load-more-btn {
        display: none;
    }

    .vouches-container {
        display: block;
    }

    .vouch-card {
        break-inside: avoid;
        margin-bottom: 1rem;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* Ajustement du conteneur de recherche */
.search-filter .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Ajustement des catégories de service */
.service-categories .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Ajustement des statistiques de service */
.service-stats .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Video Proof Section */
.video-proof {
    padding: 3rem 0;
    background: var(--background-alt);
}

.video-proof h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.video-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-container video {
    width: 100%;
    display: block;
    background: #000;
}

.fullscreen-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.fullscreen-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.video-container.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    max-width: none;
    z-index: 9999;
    border-radius: 0;
}

.video-container.fullscreen video {
    height: 100vh;
    object-fit: contain;
}

@media (max-width: 768px) {
    .video-proof {
        padding: 2rem 1rem;
    }
    
    .video-container {
        border-radius: 8px;
    }
    
    .fullscreen-btn {
        bottom: 10px;
        right: 10px;
        padding: 10px 14px;
        font-size: 1rem;
    }
}

/* Discord Screenshot Styles */
.vouch-screenshot {
    margin-top: 1rem;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #5865F2;
    background: #f8f9fa;
    cursor: pointer;
    transition: all 0.3s ease;
}

[data-theme="dark"] .vouch-screenshot {
    background: #1e1e1e;
    border-color: #7289DA;
}

.vouch-screenshot:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.3);
}

.discord-screenshot-label {
    background: #5865F2;
    color: white;
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.discord-screenshot-label i {
    font-size: 1rem;
}

.vouch-screenshot img {
    width: 100%;
    display: block;
    cursor: zoom-in;
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    cursor: zoom-out;
}

.image-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-modal img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.image-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
}

.image-modal-close:hover {
    color: #ccc;
}

@media (max-width: 768px) {
    .vouch-screenshot {
        margin-top: 0.8rem;
    }
    
    .discord-screenshot-label {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .image-modal img {
        max-width: 95%;
        max-height: 95%;
    }
    
    .image-modal-close {
        top: 10px;
        right: 15px;
        font-size: 30px;
    }
}

/* Real Vouches Section */
.real-vouches-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.05), rgba(114, 137, 218, 0.05));
    border-top: 3px solid #5865F2;
    border-bottom: 3px solid #5865F2;
}

[data-theme="dark"] .real-vouches-section {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.1), rgba(114, 137, 218, 0.1));
}

.real-vouches-section h2 {
    font-size: 2rem;
    font-weight: 700;
}

.real-vouches-section .vouches-container {
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .real-vouches-section {
        padding: 2rem 0;
    }
    
    .real-vouches-section h2 {
        font-size: 1.5rem;
        padding: 0 1rem;
    }
}

/* Real Vouch Badge */
.real-vouch-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #5865F2, #4752C4);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.5);
    z-index: 5;
    animation: pulse 2s infinite;
}

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

.real-vouch-badge i {
    color: white;
    font-size: 1rem;
}

/* Screenshot Indicator */
.has-screenshot-indicator {
    margin-top: 0.8rem;
    padding: 0.6rem 0.8rem;
    background: linear-gradient(90deg, rgba(88, 101, 242, 0.15), rgba(114, 137, 218, 0.1));
    border-left: 4px solid #5865F2;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #5865F2;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(88, 101, 242, 0.15);
}

.has-screenshot-indicator i {
    font-size: 1.1rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

[data-theme="dark"] .has-screenshot-indicator {
    background: linear-gradient(90deg, rgba(88, 101, 242, 0.25), rgba(114, 137, 218, 0.15));
    color: #7289DA;
}

.vouch-card.has-image {
    border: 2px solid #5865F2;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.02), rgba(114, 137, 218, 0.02));
    position: relative;
    overflow: visible;
}

.vouch-card.has-image::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #5865F2, #7289DA);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vouch-card.has-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(88, 101, 242, 0.4);
}

.vouch-card.has-image:hover::before {
    opacity: 0.1;
}

/* Vouch Detail Modal */
.vouch-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    overflow-y: auto;
}

.vouch-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.vouch-modal-content {
    background: var(--card-background);
    border-radius: 16px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.vouch-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: var(--text-color);
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
}

.vouch-modal-close:hover {
    color: #5865F2;
}

.vouch-modal-header {
    padding: 2rem;
    border-bottom: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.1), rgba(114, 137, 218, 0.1));
}

.vouch-modal-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #5865F2;
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.3);
}

.vouch-modal-info {
    flex: 1;
}

.vouch-modal-info h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
    color: var(--text-color);
}

.vouch-modal-info p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.discord-verified-badge {
    background: #5865F2;
    color: white;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.discord-verified-badge i {
    font-size: 1.2rem;
}

.vouch-modal-body {
    padding: 2rem;
}

.vouch-modal-body > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--background-alt);
    border-radius: 8px;
    border-left: 4px solid #5865F2;
}

.vouch-modal-screenshot {
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid #5865F2;
    box-shadow: 0 8px 24px rgba(88, 101, 242, 0.3);
}

.vouch-modal-screenshot .discord-screenshot-label {
    background: #5865F2;
    color: white;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vouch-modal-screenshot img {
    width: 100%;
    display: block;
    background: #f8f9fa;
}

[data-theme="dark"] .vouch-modal-screenshot img {
    background: #1e1e1e;
}

@media (max-width: 768px) {
    .vouch-modal.active {
        padding: 1rem;
    }
    
    .vouch-modal-content {
        max-height: 95vh;
    }
    
    .vouch-modal-header {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .vouch-modal-avatar img {
        width: 60px;
        height: 60px;
    }
    
    .vouch-modal-info h3 {
        font-size: 1.2rem;
    }
    
    .discord-verified-badge {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .vouch-modal-body {
        padding: 1.5rem;
    }
    
    .vouch-modal-body > p {
        font-size: 1rem;
        padding: 0.8rem;
    }
    
    .vouch-modal-close {
        top: 10px;
        right: 15px;
        font-size: 28px;
    }
    
    .real-vouch-badge {
        top: 8px;
        right: 8px;
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
    }
}

/* Verified Filter */
.verified-filter {
    display: flex;
    gap: 0.5rem;
}

.verified-btn {
    background: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-color);
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    transition: var(--transition);
    font-weight: 500;
}

.verified-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.verified-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

@media (max-width: 768px) {
    .verified-filter {
        width: 100%;
        justify-content: center;
    }
    
    .verified-btn {
        flex: 1;
        font-size: 0.85rem;
        padding: 0.6rem 0.8rem;
    }
}

/* Unverified Badge */
.unverified-vouch-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #95a5a6, #7f8c8d);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 2px 8px rgba(127, 140, 141, 0.4);
    z-index: 5;
}

.unverified-vouch-badge i {
    font-size: 0.9rem;
}

/* Verification Notice */
.verification-notice {
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(52, 152, 219, 0.3);
    border: 2px solid #2980b9;
}

.verification-notice h3 {
    color: white;
    font-size: 1.3rem;
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.verification-notice p {
    margin: 0.8rem 0;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    line-height: 1.6;
}

.verification-notice strong {
    color: white;
}

.verified-label {
    color: #2ecc71;
    font-weight: 700;
    font-size: 1.05rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.unverified-label {
    color: #f39c12;
    font-weight: 700;
    font-size: 1.05rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .verification-notice {
        padding: 1.5rem;
    }
    
    .verification-notice h3 {
        font-size: 1.1rem;
    }
    
    .verification-notice p {
        font-size: 0.95rem;
    }
    
    .unverified-vouch-badge {
        top: 8px;
        right: 8px;
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
    }
}

/* Discord Deletion Banner */
.discord-deletion-banner {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    box-shadow: 0 8px 24px rgba(231, 76, 60, 0.3);
    border: 2px solid #c0392b;
}

.banner-icon {
    font-size: 3rem;
    color: white;
    flex-shrink: 0;
}

.banner-content {
    flex: 1;
}

.banner-content h3 {
    color: white;
    font-size: 1.3rem;
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.banner-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Load Buttons Container */
.load-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 3rem auto;
    flex-wrap: wrap;
}

.show-all-btn {
    background: linear-gradient(135deg, #27ae60, #229954);
    border: none;
    border-radius: var(--radius-md);
    color: white;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 1rem 2.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    min-width: 200px;
}

.show-all-btn:hover {
    background: linear-gradient(135deg, #229954, #1e8449);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .discord-deletion-banner {
        flex-direction: column;
        padding: 1.5rem;
        text-align: center;
    }
    
    .banner-icon {
        font-size: 2.5rem;
    }
    
    .banner-content h3 {
        font-size: 1.1rem;
        justify-content: center;
    }
    
    .banner-content p {
        font-size: 0.95rem;
    }
    
    .load-buttons {
        flex-direction: column;
        align-items: stretch;
        padding: 0 1rem;
    }
    
    .show-all-btn, .load-more-btn {
        width: 100%;
        min-width: auto;
    }
}

/* Authenticity Badge */
.authenticity-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4);
    animation: fadeInDown 0.6s ease;
}

.authenticity-badge i {
    font-size: 1.3rem;
}

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

/* Quick Navigation */
.quick-nav {
    background: var(--background-alt);
    padding: 1rem 0;
    border-bottom: 2px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.quick-nav .container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(108, 92, 231, 0.3);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 92, 231, 0.4);
    background: var(--primary-dark);
}

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

@media (max-width: 768px) {
    .quick-nav .container {
        gap: 0.5rem;
        padding: 0 1rem;
    }
    
    .nav-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

/* Additional responsive improvements for vouches and youtube pages */
@media (max-width: 480px) {
    .quick-nav {
        padding: 0.5rem 0;
    }
    
    .quick-nav .container {
        gap: 0.3rem;
        padding: 0 0.5rem;
    }
    
    .nav-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
        flex: 1;
        justify-content: center;
    }
    
    .nav-btn i {
        font-size: 0.9rem;
    }
    
    .discord-deletion-banner {
        padding: 1rem;
    }
    
    .banner-icon {
        font-size: 2rem;
    }
    
    .verification-notice {
        padding: 1rem;
    }
    
    .load-buttons {
        padding: 0 0.5rem;
    }
}

@media (max-width: 360px) {
    .nav-btn {
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
    }
    
    .discord-deletion-banner h3 {
        font-size: 1rem;
    }
    
    .discord-deletion-banner p {
        font-size: 0.85rem;
    }
}
