* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f5f5f5;
    color: #333;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 999;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.boxed {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.flex {
    display: flex;
}

.aligncenter {
    align-items: center;
}

.space-between {
    justify-content: space-between;
}

.header-logo img {
    width: 90px;
    height: auto;
}

.header-menu {
    display: flex;
    list-style: none;
    gap: 10px;
}

.header-menu li a {
    text-decoration: none;
    color: #000;
    padding: 10px 20px;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.header-menu li a:hover {
    background-color: #000;
    color: #fff;
}

.header-menu-mobile {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
}

/* Hero Section */
.slider {
    width: 100%;
    min-height: 60vh;
    background: #000;
    position: relative;
    margin-top: 70px;
}

.slider-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(30%);
    position: absolute;
    top: 0;
    left: 0;
}

.slider-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.slider-content h1 {
    color: #fff;
    font-size: 4rem;
    margin-bottom: 10px;
}

.slider-content p {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 300;
}

/* Sections */
.section {
    padding: 80px 0;
    background: #fff;
}

.section.dark {
    background: #1a1a1a;
    color: #fff;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.dark .section-intro {
    color: #ccc;
}

/* Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.tool-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dark .tool-card {
    background: #2a2a2a;
}

.tool-card:hover {
    transform: translateY(-10px);
    border-color: #667eea;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

.tool-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.tool-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
}

.tool-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
}

.dark .tool-name {
    color: #fff;
}

.tool-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.dark .tool-description {
    color: #ccc;
}

.tool-features {
    list-style: none;
    padding: 0;
}

.tool-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
    font-size: 1rem;
}

.dark .tool-features li {
    color: #bbb;
}

.tool-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Dashboard RSS Styles */
.dashboard-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.category-filter {
    padding: 12px 25px;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-filter:hover {
    border-color: #667eea;
    color: #667eea;
}

.category-filter.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-color: transparent;
}

/* Loading State */
.loading-container {
    text-align: center;
    padding: 60px 20px;
}

.loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

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

.loading-container p {
    color: #666;
    font-size: 1.1rem;
}

/* Feed Category */
.feed-category {
    margin-bottom: 60px;
}

.category-header-dash {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #667eea;
}

.category-header-dash .material-symbols-outlined {
    font-size: 2.5rem;
    color: #667eea;
}

.category-header-dash h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

/* Sources Grid */
.sources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.source-box {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.source-box:hover {
    border-color: #667eea;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
    transform: translateY(-3px);
}

.source-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.source-info h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.source-link {
    font-size: 0.9rem;
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.source-link:hover {
    color: #764ba2;
    text-decoration: underline;
}

.source-icon {
    font-size: 2rem;
}

/* Articles List */
.articles-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.article-item {
    display: block;
    padding: 15px;
    background: linear-gradient(135deg, #667eea08 0%, #764ba208 100%);
    border-radius: 10px;
    border-left: 3px solid #667eea;
    text-decoration: none;
    transition: all 0.3s ease;
}

.article-item:hover {
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.15);
}

.article-title {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    line-height: 1.5;
    margin-bottom: 8px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #888;
}

.article-date {
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-date::before {
    content: "🕐";
    font-size: 0.9rem;
}

/* Feed Notes */
.feed-note {
    color: #666;
    font-style: italic;
    font-size: 0.95rem;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    text-align: center;
}

.feed-error {
    color: #e74c3c;
    font-size: 0.95rem;
    padding: 15px;
    background: #ffe5e5;
    border-radius: 8px;
    text-align: center;
}

/* Dashboard Footer */
.dashboard-footer {
    margin-top: 50px;
    padding: 30px;
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    border-radius: 15px;
    text-align: center;
}

.dashboard-footer p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
}

/* Responsive */
@media(max-width: 810px) {
    .header-menu {
        display: none;
    }

    .header-menu-mobile {
        display: block;
    }

    .slider-content h1 {
        font-size: 2.5rem;
    }

    .slider-content p {
        font-size: 1.3rem;
    }

    .section h2 {
        font-size: 2rem;
    }

    .tools-grid,
    .process-steps,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .navigation-buttons button {
        display: block;
        width: 90%;
        margin: 10px auto;
    }

    .routine-step {
        padding: 30px 20px;
    }

    .step-number-badge {
        left: 20px;
    }

    .personal-takeaway {
        padding: 30px 20px;
    }

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

    .server-list {
        grid-template-columns: 1fr;
    }

    .analysis-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Dashboard Responsive */
    .dashboard-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .category-filter {
        width: 100%;
        text-align: center;
    }

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

    .category-header-dash {
        flex-direction: column;
        text-align: center;
    }

    .category-header-dash h3 {
        font-size: 1.5rem;
    }
}

/* AJOUTEZ CE CODE À LA FIN DE VOTRE FICHIER veille.css */

/* ===== SECTION COMPTES X (TWITTER) ===== */

.x-accounts-section {
    margin: 30px 0;
    padding: 35px;
    background: linear-gradient(135deg, #1da1f215 0%, #14171a15 100%);
    border-radius: 20px;
    border: 2px solid rgba(29, 161, 242, 0.2);
}

.x-accounts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.x-account-link {
    text-decoration: none;
}

.x-account-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    border: 2px solid transparent;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.x-account-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #1da1f2 0%, #14171a 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.x-account-card:hover::before {
    transform: scaleY(1);
}

.x-account-card:hover {
    transform: translateY(-5px);
    border-color: #1da1f2;
    box-shadow: 0 8px 20px rgba(29, 161, 242, 0.3);
}

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

.x-icon {
    font-size: 2.5rem;
    color: #1da1f2;
    min-width: 45px;
    text-align: center;
    transition: transform 0.3s ease;
}

.x-account-card:hover .x-icon {
    transform: scale(1.15) rotate(-5deg);
}

.x-account-info h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #14171a;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.x-account-card:hover .x-account-info h5 {
    color: #1da1f2;
}

.x-account-desc {
    font-size: 0.95rem;
    color: #657786;
    margin: 0;
}

/* Benchmark Examples Section */
.benchmark-examples-section {
    margin: 40px 0;
    padding: 35px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.benchmark-title {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benchmark-intro {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

.benchmark-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.benchmark-item {
    position: relative;
}

/* X Benefits */
.x-benefits {
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, #1da1f208 0%, #14171a08 100%);
    border-radius: 15px;
    border-left: 4px solid #1da1f2;
}

.x-benefits-title {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

/* ===== CSS À AJOUTER À LA FIN DE votre fichier veille.css ===== */

/* === UNIFORMISATION DES CARTES BENCHMARKS === */
.benchmark-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.benchmark-item {
    position: relative;
    display: flex;
    flex-direction: column;
}

.benchmark-item .screenshot-container {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Conteneur d'image avec hauteur fixe pour uniformiser toutes les cartes */
.benchmark-image-wrapper {
    width: 100%;
    height: 250px; /* Hauteur fixe - ajustez si nécessaire */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 10px;
    background: #f5f5f5;
    margin-bottom: 15px;
    position: relative;
}

.benchmark-item .screenshot-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.benchmark-item .screenshot-img:hover {
    transform: scale(1.05);
}

.benchmark-item .screenshot-caption {
    margin-top: auto;
    padding-top: 15px;
    font-size: 1rem;
    color: #888;
    text-align: center;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Indicateur de clic */
.click-indicator {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(102, 126, 234, 0.9);
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 10;
}

.benchmark-item:hover .click-indicator {
    background: rgba(102, 126, 234, 1);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* === MODAL POUR AFFICHER LES IMAGES EN GRAND === */
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.image-modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    max-width: 95%;
    max-height: 95%;
    animation: modalZoom 0.3s ease;
}

@keyframes modalZoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-content img {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

/* Bouton de fermeture du modal */
.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #333;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.modal-close:hover {
    background: #667eea;
    color: #fff;
    transform: rotate(90deg);
}

/* Légende de l'image dans le modal */
.modal-caption {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
    font-size: 1.1rem;
    padding: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* === RESPONSIVE === */
@media(max-width: 810px) {
    .benchmark-gallery {
        grid-template-columns: 1fr;
    }

    .benchmark-image-wrapper {
        height: 200px; /* Hauteur réduite sur mobile */
    }

    .modal-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .modal-caption {
        position: static;
        margin-top: 20px;
        font-size: 1rem;
    }

    .modal-content {
        max-width: 100%;
    }

    .click-indicator {
        font-size: 0.75rem;
        padding: 6px 12px;
        bottom: 10px;
        right: 10px;
    }
}

/* ===== PLATEFORMES DE BENCHMARKS ===== */

.benchmark-sites-section {
    margin: 40px 0;
    padding: 35px;
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    border-radius: 20px;
    border: 2px solid rgba(102, 126, 234, 0.2);
}

.benchmark-sites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.benchmark-site-link {
    text-decoration: none;
    display: block;
}

.benchmark-site-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benchmark-site-card:hover {
    transform: translateY(-8px);
    border-color: #667eea;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.25);
}

.site-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.site-emoji {
    font-size: 2.5rem;
    min-width: 50px;
    text-align: center;
    transition: transform 0.3s ease;
}

.benchmark-site-card:hover .site-emoji {
    transform: scale(1.2) rotate(10deg);
}

.site-info h5 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.benchmark-site-card:hover .site-info h5 {
    color: #667eea;
}

.site-url {
    font-size: 0.9rem;
    color: #667eea;
    font-family: 'Courier New', monospace;
    margin: 0;
}

.site-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    flex-grow: 1;
}

.site-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.feature-tag {
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    color: #667eea;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.benchmark-site-card:hover .feature-tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-color: transparent;
}

/* Responsive */
@media(max-width: 810px) {
    .benchmark-sites-grid {
        grid-template-columns: 1fr;
    }

    .benchmark-sites-section {
        padding: 25px 20px;
    }

    .site-header {
        flex-direction: column;
        text-align: center;
    }

    .site-emoji {
        margin-bottom: 10px;
    }
}

/* Responsive pour la section X */
@media(max-width: 810px) {
    .x-accounts-grid {
        grid-template-columns: 1fr;
    }

    .benchmark-gallery {
        grid-template-columns: 1fr;
    }

    .x-accounts-section {
        padding: 25px 20px;
    }

    .benchmark-examples-section {
        padding: 25px 20px;
    }
}

/* Process Section */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.step-card {
    text-align: center;
    padding: 30px;
    position: relative;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
}

.dark .step-title {
    color: #fff;
}

.step-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.dark .step-description {
    color: #ccc;
}

/* Routine Steps */
.routine-step {
    margin: 60px 0;
    padding: 40px;
    background: #f9f9f9;
    border-radius: 20px;
    position: relative;
}

.step-number-badge {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    position: absolute;
    top: -25px;
    left: 40px;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.routine-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #000;
    padding-top: 10px;
}

.routine-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

/* Screenshot Container */
.screenshot-container {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin: 30px 0;
}

.screenshot-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.screenshot-img:hover {
    transform: scale(1.02);
}

.screenshot-caption {
    margin-top: 20px;
    font-size: 1rem;
    color: #888;
    text-align: center;
}

/* Insight Box */
.insight-box {
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    border-left: 4px solid #667eea;
    padding: 20px 25px;
    border-radius: 10px;
    margin-top: 25px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333;
}

/* Benefits Highlight */
.benefits-highlight {
    margin: 25px 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    font-size: 1.1rem;
    color: #333;
}

.benefit-icon {
    color: #667eea;
    font-weight: bold;
    font-size: 1.4rem;
}

/* Discord Servers List */
.discord-servers {
    margin: 30px 0;
    padding: 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.servers-subtitle {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}

.server-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.server-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    border-radius: 10px;
    border-left: 3px solid #667eea;
    transition: all 0.3s ease;
}

.server-item:hover {
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.2);
}

.server-icon {
    font-size: 1.5rem;
}

.server-name {
    font-size: 1.05rem;
    font-weight: 500;
    color: #333;
}

/* Discord Benefits */
.discord-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.discord-point {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.discord-point .material-symbols-outlined {
    font-size: 3rem;
    color: #667eea;
    display: block;
    margin-bottom: 15px;
}

.discord-point h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #000;
}

.discord-point p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Analysis Section */
.analysis-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.analysis-column {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
}

.analysis-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.analysis-title.positive {
    color: #667eea;
}

.analysis-title.improvement {
    color: #f39c12;
}

.analysis-list {
    list-style: none;
    padding: 0;
}

.analysis-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
}

.positive-item {
    color: #333;
}

.improvement-item {
    color: #333;
}

.item-marker {
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

.positive-item .item-marker {
    color: #667eea;
}

.improvement-item .item-marker {
    color: #f39c12;
}

.discord-point {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.discord-point .material-symbols-outlined {
    font-size: 3rem;
    color: #667eea;
    display: block;
    margin-bottom: 15px;
}

.discord-point h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #000;
}

.discord-point p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Personal Takeaway */
.personal-takeaway {
    margin-top: 80px;
    padding: 50px;
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    border-radius: 20px;
}

.personal-takeaway h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #000;
}

.takeaway-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.takeaway-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.takeaway-card h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #667eea;
}

.takeaway-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-card {
    text-align: center;
    padding: 35px 25px;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    border: 2px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: #667eea;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 8px;
}

.stat-detail {
    font-size: 0.95rem;
    color: #bbb;
    font-style: italic;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.benefit-card {
    padding: 25px;
    background: #f9f9f9;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.benefit-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #000;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-item {
    border: 2px dashed #fff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-style: solid;
    background: rgba(255,255,255,0.05);
}

.contact-item .material-symbols-outlined {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
}

.contact-item .label {
    font-weight: 700;
    text-transform: uppercase;
    margin: 10px 0;
    font-size: 1.2rem;
}

.contact-item .value {
    font-size: 1rem;
    color: #ccc;
}

.contact-item a {
    color: #fff;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Navigation Buttons */
.navigation-buttons {
    text-align: center;
    margin-top: 40px;
    padding: 30px 0;
    background-color: #f9f9f9;
    border-top: 2px solid #ddd;
}

.navigation-buttons button {
    padding: 15px 30px;
    margin: 0 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.navigation-buttons button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Discord Servers List */
.discord-servers {
    margin: 30px 0;
    padding: 35px;
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    border-radius: 20px;
    border: 2px solid rgba(102, 126, 234, 0.2);
}

.servers-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #333;
    font-weight: 700;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.servers-subtitle::before {
    content: "💬";
    font-size: 1.8rem;
}

.server-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.server-link {
    text-decoration: none;
}

.server-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: #fff;
    border-radius: 15px;
    border: 2px solid transparent;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.server-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.server-item:hover::before {
    transform: scaleY(1);
}

.server-item:hover {
    transform: translateY(-5px);
    border-color: #667eea;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.server-icon {
    font-size: 2rem;
    min-width: 40px;
    text-align: center;
    transition: transform 0.3s ease;
}

.server-item:hover .server-icon {
    transform: scale(1.2) rotate(10deg);
}

.server-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    transition: color 0.3s ease;
}

.server-item:hover .server-name {
    color: #667eea;
}

/* Responsive */
@media(max-width: 810px) {
    .header-menu {
        display: none;
    }

    .header-menu-mobile {
        display: block;
    }

    .slider-content h1 {
        font-size: 2.5rem;
    }

    .slider-content p {
        font-size: 1.3rem;
    }

    .section h2 {
        font-size: 2rem;
    }

    .tools-grid,
    .process-steps,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .navigation-buttons button {
        display: block;
        width: 90%;
        margin: 10px auto;
    }

    .routine-step {
        padding: 30px 20px;
    }

    .step-number-badge {
        left: 20px;
    }

    .personal-takeaway {
        padding: 30px 20px;
    }

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

    .server-list {
        grid-template-columns: 1fr;
    }

    .analysis-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}