.top-notification-banner {
    background: linear-gradient(to right, #4A56E2, #3A45B2); /* Blue gradient */
    color: #FFFFFF; /* White text */
    font-weight: 500; /* Slightly bolder text */
    text-align: center;
    padding: 8px 10px;
    font-size: 0.85em;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2); /* Subtle shadow */
    /* position: fixed; */ /* Optional: if you want it to stick at the top on scroll */
    /* top: 0; */
    /* left: 0; */
    /* z-index: 1001; */ /* Ensure it's above other content if fixed */
}

body {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #E8E8E8;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    line-height: 1.6;
}

header {
    width: 100%;
    max-width: 1200px;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.logo {
    font-size: 1.5em;
    font-weight: 600;
    color: #FFFFFF;
    display: flex; /* Added to help align image if needed */
    align-items: center; /* Added to help align image if needed */
}

#site-logo {
    height: 50px; /* Increased size */
    width: auto;   /* Maintain aspect ratio */
    display: block;
}

.site-status-indicator {
    display: flex;
    align-items: center;
    margin-left: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 8px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.status-text {
    font-size: 0.6em;
    color: #C8D3F5;
    margin-right: 5px;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.status-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.status-dot.online {
    background: #00FF88;
    box-shadow: 0 0 4px rgba(0, 255, 136, 0.5);
    animation: subtleGlow 3s infinite ease-in-out;
}

@keyframes subtleGlow {
    0%, 100% { 
        opacity: 1;
    }
    50% { 
        opacity: 0.7;
    }
}

@keyframes blinkAnimation {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}

nav {
    display: flex;
    gap: 20px;
}

.status-item {
    font-size: 0.9em;
    padding: 8px 12px;
    border-radius: 6px;
    background-color: #2a2a2a; /* Slightly lighter dark shade for status items */
}

.partial-outage {
    color: #FFD700; /* Yellow for outage */
}

.high-demand {
    color: #FF6B6B; /* A reddish color for high demand */
    /* You can add a background or border if you like */
    /* background-color: #3e2e2e; */
}

.wallet-status {
    color: #32CD32; /* Green for success/connected */
}

main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Center content vertically for initial view */
    width: 100%;
    max-width: 800px; /* Max width for main content area */
    padding: 40px;
    box-sizing: border-box;
    text-align: center;
}

.hero h1 {
    font-size: 2.4em;
    font-weight: 700;
    margin-bottom: 12px;
    color: #FFFFFF;
    text-shadow: 0 2px 4px rgba(138, 43, 226, 0.3);
    letter-spacing: -0.02em;
}

.hero .highlight {
    background: linear-gradient(135deg, #8A2BE2, #DA70D6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.hero h2 {
    font-size: 1.1em;
    color: #B0B0B0;
    margin-bottom: 12px; /* Adjusted for logos */
}

.platform-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px; /* Space between logos */
    margin-bottom: 30px;
}

.platform-logos img {
    height: 24px; /* Adjust size as needed */
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.platform-logos img:hover {
    opacity: 1;
}

.hero p {
    font-size: 1.1em;
    color: #A0A0A0; /* Lighter grey for sub-headline */
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.promotion-form {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.95), rgba(45, 45, 45, 0.9));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(138, 43, 226, 0.2);
    box-sizing: border-box;
    padding: 35px;
    border-radius: 20px;
    width: 100%;
    max-width: 520px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.1);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 0.9em;
    color: #B0B0B0;
    margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group select {
    width: 100%;
    padding: 12px;
    background-color: #2C2C2C; /* Dark input background */
    border: 1px solid #444444;
    border-radius: 6px;
    color: #E0E0E0;
    font-size: 1em;
    box-sizing: border-box;
}

.form-group input[type="text"]::placeholder {
    color: #777777;
}

.form-group select {
    /* margin-bottom: 10px; */ /* Space now handled by #promotion-details margin-top */
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20width%3D%27292.4%27%20height%3D%27292.4%27%3E%3Cpath%20fill%3D%27%23B0B0B0%27%20d%3D%27M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%27/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
}

.promotion-details-message {
    font-size: 0.85em;
    color: #A0A0A0; /* Lighter grey for details */
    margin-top: 5px; /* Space above the message */
    min-height: 2.5em; /* Ensure space even if message is short, prevents layout jump */
    text-align: center;
    padding: 5px 0;
}

#promotion-details {
    text-align: center;
    font-size: 0.9em;
    margin-top: 15px;
    margin-bottom: 20px;
    margin-left: 12px; /* Align with select box's left padding */
    margin-right: 12px; /* Align with select box's right padding */
    /* This makes the block's width effectively 100% - 24px of its container */
    /* max-width is no longer needed with these margins */
    box-sizing: border-box; /* Ensure padding/border are included in width/height */
}

.cta-button {
    background: linear-gradient(135deg, #8A2BE2, #6A0DAD);
    color: #FFFFFF;
    border: none;
    padding: 10px 40px;
    width: auto;
    display: inline-block;
    font-size: 1em;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(138, 43, 226, 0.3);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
}

.cta-button:disabled {
    background: linear-gradient(135deg, #555, #444);
    cursor: not-allowed;
    box-shadow: none;
}

.cta-button:hover {
    background: linear-gradient(135deg, #9A2BF2, #7A0DBD);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.error-message {
    color: #FF4136; /* A bright red color */
    font-size: 0.9em;
    margin-top: 10px;
    text-align: center; /* Or left, depending on preference */
}

.field-error-message {
    color: #FF4136; /* A bright red color */
    font-size: 0.85em;
    margin-top: 5px;
    display: block; /* Ensure it takes its own line */
    text-align: left; /* Align with form field labels */
}

.field-help-text {
    color: #A0A0A0;
    font-size: 0.8em;
    margin-top: 5px;
    font-style: italic;
    line-height: 1.3;
    display: block;
    text-align: left;
}

.header-button {
    padding: 8px 15px;
    font-size: 0.9em; /* Slightly smaller than main CTA */
    width: auto; /* Override width from .cta-button */
    margin-left: 15px; /* Space from balance display */
}

#site-logo {
    height: 40px; /* Adjust as needed */
    width: auto; /* Maintain aspect ratio */
    display: block; /* Or inline-block if preferred for alignment */
}

.header-status {
    display: flex; 
    align-items: center;
    gap: 10px;
}

/* Username Modal Specific Styles */
.username-modal-content h2 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.username-modal-content p {
    font-size: 0.9em;
    color: #A0A0A0;
    margin-bottom: 20px;
}

.platform-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px; /* Space between logos */
    margin-bottom: 30px;
}

.platform-logos img {
    height: 24px; /* Adjust size as needed */
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.platform-logos img:hover {
    opacity: 1;
}

.username-modal-content input[type="text"] {
    width: calc(100% - 24px); /* Account for padding */
    padding: 12px;
    margin-bottom: 20px;
    background-color: #2C2C2C;
    border: 1px solid #444444;
    border-radius: 6px;
    color: #E0E0E0;
    font-size: 1em;
    box-sizing: border-box;
}

.username-modal-content input[type="text"]::placeholder {
    color: #777777;
}

.username-modal-content .cta-button {
    width: 100%;
    padding: 12px;
}

#user-pseudonym {
    color: #E0E0E0;
    font-size: 0.9em;
    margin-left: 15px;
    display: none; /* Initially hidden, shown by JS */
    text-transform: uppercase; /* Display text in uppercase */
    /* Additional styling if needed, inherits from .status-item */
}

/* Promotion Status Overlay Specific Styles */
.promotion-status-content h2 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #FFFFFF;
    font-size: 1.5em;
}

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

.address-generation-loading {
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.address-generation-text {
    margin-top: 14px;
    font-size: 1.08em;
    color: #B0B0B0;
    letter-spacing: 0.03em;
    font-weight: 500;
}


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


/* Modal Styles */
.modal {
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.6); /* Black w/ opacity */
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #1E1E1E; /* Dark background for modal */
    color: #E0E0E0;
    margin: auto;
    padding: 20px;
    border: 1px solid #444;
    border-radius: 10px;
    width: 95%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.close-button {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
}

.close-button:hover,
.close-button:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

/* Enhanced Payment Modal Styles */
.payment-header {
    text-align: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #444;
}

.payment-icon {
    font-size: 2.2em;
    margin-bottom: 10px;
}

.payment-title {
    margin: 0 0 10px 0;
    font-size: 1.8em;
    color: #FFFFFF;
    font-weight: 600;
}

.payment-subtitle {
    color: #8A2BE2;
    font-size: 1.1em;
    font-weight: 500;
}

.platform-focus {
    color: #FFFFFF;
    font-size: 1.0em;
    font-weight: 500;
    margin-left: 15px;
    display: inline-flex;
    align-items: center;
}

.payment-loader {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(138, 43, 226, 0.3);
    border-left: 4px solid #8A2BE2;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

/* Wallet Generation Page Styles */
.wallet-generation-loading {
    text-align: center;
    padding: 30px 20px;
}

.generation-icon {
    font-size: 3.5em;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.generation-title {
    font-size: 1.5em;
    color: #FFFFFF;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.generation-subtitle {
    color: #B0B0B0;
    font-size: 0.95em;
    margin-bottom: 25px;
}

.loading-progress {
    margin: 20px 0;
    width: 100%;
    max-width: 300px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(138, 43, 226, 0.2);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #8A2BE2, #DA70D6);
    width: 0%;
    border-radius: 3px;
    animation: progressAnimation 3s ease-in-out infinite;
}

@keyframes progressAnimation {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

.progress-text {
    color: #A0A0A0;
    font-size: 0.85em;
    margin: 0;
}

.loading-steps {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 0.9em;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
}

.step-item.active {
    color: #8A2BE2;
    font-weight: 500;
    background: rgba(138, 43, 226, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.2);
}

.step-icon {
    font-size: 1.1em;
}

.step-text {
    font-size: 0.9em;
}

.payment-summary {
    background: rgba(138, 43, 226, 0.1);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid rgba(138, 43, 226, 0.2);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.95em;
}

.summary-row.total {
    border-top: 1px solid #444;
    padding-top: 10px;
    margin-top: 15px;
    font-weight: 600;
    font-size: 1.1em;
    color: #8A2BE2;
}

.payment-method h3 {
    margin: 0 0 20px 0;
    color: #FFFFFF;
    text-align: center;
    font-size: 1.2em;
}

.qr-section {
    text-align: center;
    margin-bottom: 15px;
}

.qr-code {
    width: 150px;
    height: 150px;
    border-radius: 8px;
    border: 2px solid rgba(138, 43, 226, 0.3);
    margin-bottom: 8px;
}

.qr-instruction {
    color: #B0B0B0;
    font-size: 0.9em;
    margin: 0;
}

.address-section {
    margin-bottom: 15px;
}

.address-label {
    display: block;
    color: #FFFFFF;
    font-weight: 500;
    margin-bottom: 10px;
    text-align: center;
}

.address-container {
    display: flex;
    align-items: center;
    background: #2c2c2c;
    border-radius: 8px;
    padding: 12px;
    border: 1px solid #444;
}

.wallet-address-display {
    flex: 1;
    font-family: 'Courier New', monospace;
    font-size: 0.85em;
    color: #00C853;
    word-break: break-all;
    margin-right: 10px;
}

.copy-btn {
    background: #8A2BE2;
    border: none;
    border-radius: 6px;
    padding: 10px 15px;
    color: white;
    cursor: pointer;
    font-size: 0.9em;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    min-width: 80px;
    justify-content: center;
}

.copy-btn:hover {
    background: #7A1FB2;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(138, 43, 226, 0.3);
}

.copy-btn:active {
    transform: translateY(0px);
}

.copy-instruction {
    color: #A0A0A0;
    font-size: 0.8em;
    margin: 8px 0 0 0;
    text-align: center;
    font-style: italic;
}

.payment-status {
    text-align: center;
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(0, 200, 83, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(0, 200, 83, 0.2);
}

.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.pulse-loader {
    width: 20px;
    height: 20px;
    background: #00C853;
    border-radius: 50%;
    margin-right: 10px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.1); }
    100% { opacity: 1; transform: scale(1); }
}

.payment-status .status-text {
    color: #00C853;
    font-weight: 500;
    font-size: 1.1em;
}

.payment-timer {
    color: #FFB347;
    font-size: 0.9em;
}

.payment-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(138, 43, 226, 0.2);
    color: #8A2BE2;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 500;
    border: 1px solid rgba(138, 43, 226, 0.3);
}

.payment-warning {
    color: #FFB347;
    font-size: 0.85em;
    margin: 0;
    font-weight: 500;
}

.recently-promoted {
    width: 100%;
    max-width: 1000px; /* Wider for this section */
    text-align: center;
    margin-bottom: 40px;
}

.recently-promoted h2 {
    font-size: 1.8em;
    font-weight: 600;
    margin-bottom: 30px;
    color: #FFFFFF;
}

.highlight-secondary {
    color: #8A2BE2; /* Purple highlight */
    text-decoration: underline;
    text-decoration-color: #8A2BE2;
    text-underline-offset: 4px;
}

.promoted-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.promoted-link {
    text-decoration: none;
    color: inherit; /* Inherit text color from parent */
    display: block; /* Make the link a block to encompass the item */
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.promoted-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.25);
}

.promoted-item {
    background-color: #1E1E1E; /* Darker card background */
    border-radius: 10px;
    padding: 15px;
    width: 200px; /* Adjust as needed */
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.promoted-item img, .promoted-avatar {
    width: 50px; /* Smaller image size */
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
    filter: blur(4px); /* Flou fort sur les logos */
}

.item-info {
    text-align: left;
}

.item-info .coin-name {
    font-size: 1em;
    font-weight: 500;
    color: #FFFFFF;
    margin: 0 0 5px 0;
    filter: blur(3px); /* Flou sur les noms des coins */
}

.item-info .marketcap {
    font-size: 0.85em;
    color: #00C853; /* Green for marketcap, adjust if needed */
    margin: 0;
}

/* Certified Accounts Section */
.certified-accounts {
    width: 100%;
    max-width: 1200px;
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.certified-accounts h2 {
    font-size: 2em;
    font-weight: 600;
    margin-bottom: 40px;
    color: #FFFFFF;
}

.accounts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    justify-content: center;
}

.account-item {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.9), rgba(45, 45, 45, 0.8));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(138, 43, 226, 0.15);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
    text-align: left;
}

.account-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(138, 43, 226, 0.2);
    border-color: rgba(138, 43, 226, 0.3);
}

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

.account-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    border: 2px solid rgba(138, 43, 226, 0.3);
}

.account-info h3 {
    margin: 0;
    font-size: 1.1em;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 8px;
}

.verified-badge {
    background: linear-gradient(135deg, #1DA1F2, #0084b4);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.followers-count {
    margin: 5px 0 0 0;
    font-size: 0.9em;
    color: #B0B0B0;
}

.account-quote {
    font-style: italic;
    color: #E0E0E0;
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 0.95em;
}

.engagement-stats {
    display: flex;
    gap: 20px;
    font-size: 0.9em;
    color: #B0B0B0;
}

.engagement-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Twitter Community Section */
.twitter-community {
    width: 100%;
    max-width: 1200px;
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.twitter-community h2 {
    font-size: 2em;
    font-weight: 600;
    margin-bottom: 40px;
    color: #FFFFFF;
}

.twitter-feed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    justify-content: center;
}

.tweet-item {
    background: linear-gradient(135deg, rgba(29, 161, 242, 0.1), rgba(30, 30, 30, 0.9));
    border: 1px solid rgba(29, 161, 242, 0.2);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    text-align: left;
}

.tweet-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(29, 161, 242, 0.15);
    border-color: rgba(29, 161, 242, 0.3);
}

.tweet-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.tweet-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 12px;
    border: 2px solid rgba(29, 161, 242, 0.3);
}

.tweet-info h4 {
    margin: 0;
    font-size: 0.95em;
    color: #1DA1F2;
    font-weight: 600;
}

.tweet-time {
    font-size: 0.8em;
    color: #B0B0B0;
    margin-top: 2px;
}

.tweet-text {
    color: #E0E0E0;
    margin-bottom: 12px;
    line-height: 1.4;
    font-size: 0.9em;
}

.tweet-stats {
    display: flex;
    gap: 15px;
    font-size: 0.85em;
    color: #B0B0B0;
}

.tweet-stats span {
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.3s ease;
}

.tweet-stats span:hover {
    color: #1DA1F2;
}

/* High-Reach Accounts Section */
.high-reach-accounts {
    width: 100%;
    max-width: 1400px;
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.high-reach-accounts h2 {
    font-size: 2.2em;
    font-weight: 600;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.section-subtitle {
    font-size: 1.1em;
    color: #B0B0B0;
    margin-bottom: 40px;
    font-style: italic;
}

.reach-accounts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    justify-content: center;
}

.reach-account-item {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.95), rgba(45, 45, 45, 0.9));
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.reach-account-item.mega-influencer {
    border: 2px solid rgba(255, 215, 0, 0.4);
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.1);
}

.reach-account-item.macro-influencer {
    border: 2px solid rgba(138, 43, 226, 0.4);
    box-shadow: 0 8px 32px rgba(138, 43, 226, 0.1);
}

.reach-account-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.reach-account-item.mega-influencer:hover {
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.reach-account-item.macro-influencer:hover {
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.2);
}

.reach-header {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.reach-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.reach-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    font-size: 0.7em;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.macro-influencer .reach-badge {
    background: linear-gradient(135deg, #8A2BE2, #9A2BF2);
    color: #FFF;
}

.reach-account-item h3 {
    font-size: 1.2em;
    color: #FFFFFF;
    margin-bottom: 15px;
    font-weight: 600;
}

.reach-stats {
    margin-bottom: 15px;
}

.reach-stats span {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9em;
    color: #B0B0B0;
}

.reach-description {
    font-style: italic;
    color: #D0D0D0;
    margin-bottom: 20px;
    line-height: 1.5;
    font-size: 0.9em;
}

.reach-platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.platform {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8em;
    color: #E0E0E0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.platform:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Instagram Premium Network Section */
.instagram-network {
    width: 100%;
    max-width: 1400px;
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.instagram-network h2 {
    font-size: 2.2em;
    font-weight: 600;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.instagram-accounts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 25px;
    justify-content: center;
}

.instagram-account-item {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.15), rgba(30, 30, 30, 0.95));
    backdrop-filter: blur(12px);
    border: 2px solid rgba(225, 48, 108, 0.3);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.instagram-account-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(225, 48, 108, 0.2);
    border-color: rgba(225, 48, 108, 0.5);
}

.instagram-header {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.instagram-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid rgba(225, 48, 108, 0.4);
    box-shadow: 0 8px 24px rgba(225, 48, 108, 0.2);
}

.instagram-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, #E91E63, #C2185B);
    color: #FFF;
    font-size: 0.7em;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.4);
}

.instagram-account-item h3 {
    font-size: 1.3em;
    color: #FFFFFF;
    margin-bottom: 15px;
    font-weight: 600;
}

.instagram-stats {
    margin-bottom: 15px;
}

.instagram-stats span {
    display: block;
    margin-bottom: 5px;
    font-size: 0.95em;
    color: #E91E63;
    font-weight: 500;
}

.instagram-description {
    font-style: italic;
    color: #D0D0D0;
    margin-bottom: 20px;
    line-height: 1.5;
    font-size: 0.9em;
}

.instagram-content-types {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.content-type {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.2), rgba(225, 48, 108, 0.1));
    backdrop-filter: blur(5px);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8em;
    color: #E91E63;
    border: 1px solid rgba(225, 48, 108, 0.3);
    transition: all 0.3s ease;
    font-weight: 500;
}

.content-type:hover {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.3), rgba(225, 48, 108, 0.2));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(225, 48, 108, 0.2);
}

/* Community Supporters Section */
.community-supporters {
    width: 100%;
    max-width: 1400px;
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.community-supporters h2 {
    font-size: 2.2em;
    font-weight: 600;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.supporters-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
    justify-content: center;
}

.stat-item {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(30, 30, 30, 0.9));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 16px;
    padding: 25px 15px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(138, 43, 226, 0.2);
}

.stat-item h3 {
    font-size: 2.2em;
    font-weight: 700;
    color: #8A2BE2;
    margin: 0 0 10px 0;
    text-shadow: 0 2px 4px rgba(138, 43, 226, 0.3);
}

.stat-item p {
    font-size: 0.9em;
    color: #B0B0B0;
    margin: 0;
    font-weight: 500;
}

.supporters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
    justify-content: center;
}

.supporter-group {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.95), rgba(45, 45, 45, 0.9));
    backdrop-filter: blur(12px);
    border: 1px solid rgba(138, 43, 226, 0.2);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
    text-align: left;
}

.supporter-group:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(138, 43, 226, 0.15);
    border-color: rgba(138, 43, 226, 0.4);
}

.supporter-group h4 {
    font-size: 1.2em;
    color: #FFFFFF;
    margin: 0 0 20px 0;
    font-weight: 600;
    text-align: center;
}

.supporter-avatars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: -5px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.supporter-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(138, 43, 226, 0.4);
    margin-left: -5px;
    transition: all 0.3s ease;
    position: relative;
}

.supporter-avatar:hover {
    transform: scale(1.1);
    z-index: 10;
    border-color: rgba(138, 43, 226, 0.8);
}

.more-supporters {
    background: linear-gradient(135deg, #8A2BE2, #9A2BF2);
    color: #FFFFFF;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7em;
    font-weight: 600;
    margin-left: 10px;
    border: 2px solid rgba(138, 43, 226, 0.4);
}

.group-description {
    font-size: 0.9em;
    color: #C0C0C0;
    line-height: 1.5;
    text-align: center;
    font-style: italic;
}

/* Meme Creators Section */
.meme-creators {
    width: 100%;
    max-width: 1400px;
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.meme-creators h2 {
    font-size: 2.2em;
    font-weight: 600;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.creators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.creator-item {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(30, 30, 30, 0.95));
    backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.creator-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 193, 7, 0.2);
    border-color: rgba(255, 193, 7, 0.5);
}

.creator-header {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.creator-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid rgba(255, 193, 7, 0.4);
    box-shadow: 0 8px 24px rgba(255, 193, 7, 0.2);
}

.creator-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 0.7em;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    color: #000;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
}

.creator-badge:contains("VIRAL") {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
}

.creator-badge {
    background: linear-gradient(135deg, #FFC107, #FF9800);
}

.creator-item h3 {
    font-size: 1.3em;
    color: #FFFFFF;
    margin-bottom: 15px;
    font-weight: 600;
}

.creator-stats {
    margin-bottom: 20px;
    text-align: left;
}

.creator-stats span {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9em;
    color: #FFC107;
    font-weight: 500;
    padding: 5px 0;
}

.creator-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
}

.specialty {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 193, 7, 0.1));
    backdrop-filter: blur(5px);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8em;
    color: #FFC107;
    border: 1px solid rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
    font-weight: 500;
}

.specialty:hover {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.3), rgba(255, 193, 7, 0.2));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.2);
}

.recent-memes {
    text-align: left;
    margin-top: 20px;
}

.recent-memes h5 {
    font-size: 1em;
    color: #FFFFFF;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.meme-examples {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 15px;
}

.meme-stat {
    font-size: 0.85em;
    color: #D0D0D0;
    margin-bottom: 8px;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 193, 7, 0.1);
}

.meme-stat:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/* Mini Accounts Section */
/* Certified Army Styles */
.certified-army {
    width: 100%;
    max-width: 1400px;
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.certified-army h2 {
    font-size: 2.2em;
    font-weight: 600;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.certified-army-showcase {
    margin-top: 40px;
}

.army-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.army-stat {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(30, 30, 30, 0.9));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 16px;
    padding: 25px 15px;
    transition: all 0.3s ease;
}

.army-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(138, 43, 226, 0.2);
}

.army-stat h3 {
    font-size: 2.2em;
    font-weight: 700;
    color: #8A2BE2;
    margin: 0 0 10px 0;
    text-shadow: 0 2px 4px rgba(138, 43, 226, 0.3);
}

.army-stat p {
    font-size: 1em;
    color: #B0B0B0;
    margin: 0;
    font-weight: 500;
}

.certified-accounts-preview {
    text-align: left;
}

.certified-accounts-preview h4 {
    font-size: 1.4em;
    color: #FFFFFF;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
}

.certified-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    justify-content: center;
}

.certified-post {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(30, 30, 30, 0.9));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(138, 43, 226, 0.2);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.certified-post:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(138, 43, 226, 0.15);
    border-color: rgba(138, 43, 226, 0.3);
}

.certified-post-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.certified-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 10px;
    border: 1px solid rgba(138, 43, 226, 0.3);
    filter: blur(4px); /* Flou fort sur les photos */
}

.certified-info {
    display: flex;
    flex-direction: column;
}

.certified-username {
    font-size: 0.9em;
    color: #8A2BE2;
    font-weight: 600;
    filter: blur(3px); /* Flou fort sur les noms d'utilisateurs */
}

.certified-followers {
    font-size: 0.75em;
    color: #B0B0B0;
}

.verified-badge {
    color: #1DA1F2;
    margin-left: 5px;
}

.certified-post-text {
    color: #E0E0E0;
    margin: 12px 0;
    line-height: 1.4;
    font-size: 0.95em;
}

.certified-engagement {
    color: #A0A0A0;
    font-size: 0.85em;
    font-weight: 500;
}

/* Recent Updates Section */
.recent-updates {
    width: 100%;
    max-width: 1400px;
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.recent-updates h2 {
    font-size: 2.2em;
    font-weight: 600;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.updates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.update-item {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(30, 30, 30, 0.9));
    border: 1px solid rgba(138, 43, 226, 0.2);
    border-radius: 16px;
    padding: 25px;
    text-align: left;
    transition: all 0.3s ease;
}

.update-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(138, 43, 226, 0.2);
    border-color: rgba(138, 43, 226, 0.3);
}

.update-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.update-date {
    font-size: 0.85em;
    color: #A0A0A0;
    font-weight: 500;
}

.update-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.update-badge.new {
    background: linear-gradient(135deg, #00C853, #2ECC71);
    color: #FFFFFF;
}

.update-badge.improved {
    background: linear-gradient(135deg, #8A2BE2, #DA70D6);
    color: #FFFFFF;
}

.update-badge.updated {
    background: linear-gradient(135deg, #FF9800, #FFC107);
    color: #FFFFFF;
}

.update-item h3 {
    color: #FFFFFF;
    font-size: 1.3em;
    margin-bottom: 12px;
    font-weight: 600;
}

.update-item p {
    color: #B0B0B0;
    line-height: 1.5;
    margin-bottom: 20px;
}

.update-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature {
    font-size: 0.9em;
    color: #00C853;
    font-weight: 500;
}

/* Feature Requests Section */
.feature-requests {
    width: 100%;
    max-width: 1400px;
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.feature-requests h2 {
    font-size: 2.2em;
    font-weight: 600;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.request-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
    text-align: left;
}

.request-form {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(30, 30, 30, 0.9));
    border: 1px solid rgba(138, 43, 226, 0.2);
    border-radius: 16px;
    padding: 30px;
}

.request-form h3 {
    color: #FFFFFF;
    font-size: 1.4em;
    margin-bottom: 10px;
}

.request-form p {
    color: #B0B0B0;
    line-height: 1.5;
    margin-bottom: 25px;
}

.feature-request-form .form-group {
    margin-bottom: 20px;
}

.feature-request-form label {
    display: block;
    color: #E0E0E0;
    font-weight: 500;
    margin-bottom: 8px;
}

.feature-request-form input,
.feature-request-form textarea,
.feature-request-form select {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px;
    color: #E0E0E0;
    font-size: 0.95em;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.feature-request-form input:focus,
.feature-request-form textarea:focus,
.feature-request-form select:focus {
    border-color: #8A2BE2;
    box-shadow: 0 0 0 3px rgba(138, 43, 226, 0.1);
    outline: none;
}

.request-btn {
    background: linear-gradient(135deg, #8A2BE2, #DA70D6);
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    padding: 15px 30px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.request-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(138, 43, 226, 0.3);
}

.popular-requests {
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.1), rgba(30, 30, 30, 0.9));
    border: 1px solid rgba(0, 200, 83, 0.2);
    border-radius: 16px;
    padding: 30px;
}

.popular-requests h4 {
    color: #FFFFFF;
    font-size: 1.4em;
    margin-bottom: 20px;
}

.request-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.request-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.request-item:hover {
    background: rgba(0, 200, 83, 0.05);
    border-color: rgba(0, 200, 83, 0.2);
}

.request-text {
    color: #E0E0E0;
    font-size: 0.9em;
    flex: 1;
}

.request-votes {
    color: #00C853;
    font-size: 0.85em;
    font-weight: 600;
    padding: 4px 8px;
    background: rgba(0, 200, 83, 0.1);
    border-radius: 12px;
}

/* Final CTA Section */
.final-cta {
    width: 100%;
    max-width: 1400px;
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.cta-content {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(30, 30, 30, 0.9));
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 20px;
    padding: 50px 30px;
    position: relative;
    overflow: hidden;
}

.cta-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(138, 43, 226, 0.1), transparent, rgba(138, 43, 226, 0.1));
    pointer-events: none;
}

.final-cta h2 {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 15px;
    color: #FFFFFF;
    position: relative;
    z-index: 1;
}

.final-cta p {
    font-size: 1.2em;
    color: #B0B0B0;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.final-cta-button {
    background: linear-gradient(135deg, #8A2BE2, #DA70D6);
    color: #FFFFFF;
    border: none;
    border-radius: 16px;
    padding: 20px 40px;
    font-size: 1.2em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(138, 43, 226, 0.4);
}

.final-cta-button small {
    font-size: 0.75em;
    opacity: 0.8;
    font-weight: 400;
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2em;
    font-weight: 700;
    color: #8A2BE2;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9em;
    color: #A0A0A0;
    font-weight: 500;
}

@media (max-width: 768px) {
    .request-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .updates-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .final-cta h2 {
        font-size: 2em;
    }
}

.mini-accounts {
    width: 100%;
    max-width: 1400px;
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.mini-accounts h2 {
    font-size: 2.2em;
    font-weight: 600;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.mini-accounts-showcase {
    margin-top: 40px;
}

.showcase-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.showcase-stat {
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.2), rgba(30, 30, 30, 0.9));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 200, 83, 0.3);
    border-radius: 16px;
    padding: 25px 15px;
    transition: all 0.3s ease;
}

.showcase-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 200, 83, 0.2);
}

.showcase-stat h3 {
    font-size: 2.2em;
    font-weight: 700;
    color: #00C853;
    margin: 0 0 10px 0;
    text-shadow: 0 2px 4px rgba(0, 200, 83, 0.3);
}

.showcase-stat p {
    font-size: 0.9em;
    color: #B0B0B0;
    margin: 0;
    font-weight: 500;
}

.mini-accounts-preview {
    text-align: left;
}

.mini-accounts-preview h4 {
    font-size: 1.4em;
    color: #FFFFFF;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
}

.mini-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    justify-content: center;
}

.mini-post {
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.1), rgba(30, 30, 30, 0.9));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 200, 83, 0.2);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.mini-post:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 200, 83, 0.15);
    border-color: rgba(0, 200, 83, 0.3);
}

.mini-post-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.mini-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 10px;
    border: 1px solid rgba(0, 200, 83, 0.3);
    filter: blur(4px); /* Flou fort sur les photos */
}

.mini-info {
    display: flex;
    flex-direction: column;
}

.mini-username {
    font-size: 0.9em;
    color: #00C853;
    font-weight: 600;
    filter: blur(3px); /* Flou fort sur les noms d'utilisateurs */
}

.mini-followers {
    font-size: 0.75em;
    color: #B0B0B0;
}

.mini-post-text {
    color: #E0E0E0;
    margin-bottom: 10px;
    line-height: 1.4;
    font-size: 0.9em;
}

.mini-engagement {
    font-size: 0.8em;
    color: #B0B0B0;
    display: flex;
    gap: 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero h1 {
        font-size: 2.2em;
    }
    .hero p {
        font-size: 1em;
    }
    .promotion-form {
        padding: 20px;
    }
    .promoted-grid {
        flex-direction: column;
        align-items: center;
    }
    .promoted-item {
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.3em;
    }
    .status-item {
        font-size: 0.8em;
    }
    .hero h1 {
        font-size: 1.8em;
    }
    .cta-button {
        font-size: 1em;
        padding: 12px;
    }
    .recently-promoted h2 {
        font-size: 1.5em;
    }
}

/* Feature Requests Section */
.feature-requests {
    background: linear-gradient(135deg, #0F0F0F 0%, #1A1A1A 100%);
    padding: 80px 0;
    border-top: 1px solid rgba(138, 43, 226, 0.1);
}

.feature-requests .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.feature-requests .section-header h2 {
    font-size: 2.5em;
    background: linear-gradient(135deg, #8A2BE2, #DA70D6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.feature-requests .section-header p {
    font-size: 1.1em;
    color: #B0B0B0;
    margin: 0;
}

.requests-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.request-form-container {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.95), rgba(45, 45, 45, 0.9));
    backdrop-filter: blur(12px);
    border: 1px solid rgba(138, 43, 226, 0.2);
    border-radius: 20px;
    padding: 40px;
}

.request-form-container h3 {
    color: #FFFFFF;
    font-size: 1.5em;
    margin: 0 0 30px 0;
    font-weight: 600;
}

.feature-request-form .form-group {
    margin-bottom: 25px;
}

.feature-request-form label {
    display: block;
    color: #FFFFFF;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.95em;
}

.feature-request-form input,
.feature-request-form textarea,
.feature-request-form select {
    width: 100%;
    padding: 14px 18px;
    background: rgba(20, 20, 20, 0.8);
    border: 2px solid rgba(138, 43, 226, 0.2);
    border-radius: 12px;
    color: #FFFFFF;
    font-size: 1em;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.feature-request-form input:focus,
.feature-request-form textarea:focus,
.feature-request-form select:focus {
    outline: none;
    border-color: #8A2BE2;
    box-shadow: 0 0 0 3px rgba(138, 43, 226, 0.1);
}

.feature-request-form textarea {
    resize: vertical;
    min-height: 100px;
}

.request-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #8A2BE2, #DA70D6);
    border: none;
    border-radius: 12px;
    color: #FFFFFF;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.request-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(138, 43, 226, 0.3);
}

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

.popular-requests h3 {
    color: #FFFFFF;
    font-size: 1.5em;
    margin: 0 0 30px 0;
    font-weight: 600;
}

.request-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.request-item {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.95), rgba(45, 45, 45, 0.9));
    backdrop-filter: blur(12px);
    border: 1px solid rgba(138, 43, 226, 0.2);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.request-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(138, 43, 226, 0.1);
    border-color: rgba(138, 43, 226, 0.4);
}

.request-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.request-header h4 {
    color: #FFFFFF;
    font-size: 1.1em;
    margin: 0;
    font-weight: 600;
}

.votes {
    font-size: 0.9em;
    color: #00C853;
    font-weight: 500;
}

.request-item p {
    color: #B0B0B0;
    font-size: 0.95em;
    margin: 0 0 15px 0;
    line-height: 1.5;
}

.request-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 500;
    text-transform: uppercase;
}

.status.pending {
    background: rgba(255, 193, 7, 0.2);
    color: #FFC107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.status.in-development {
    background: rgba(0, 200, 83, 0.2);
    color: #00C853;
    border: 1px solid rgba(0, 200, 83, 0.3);
}

.status.planned {
    background: rgba(33, 150, 243, 0.2);
    color: #2196F3;
    border: 1px solid rgba(33, 150, 243, 0.3);
}

.category {
    padding: 4px 12px;
    background: rgba(138, 43, 226, 0.2);
    color: #DA70D6;
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 500;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #0F0F0F 0%, #1A1A1A 50%, #8A2BE2 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(218, 112, 214, 0.05));
    backdrop-filter: blur(1px);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3em;
    font-weight: 700;
    background: linear-gradient(135deg, #FFFFFF, #DA70D6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.stat-label {
    color: #B0B0B0;
    font-size: 1em;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-main {
    margin: 50px 0;
}

.cta-main h2 {
    font-size: 3.2em;
    color: #FFFFFF;
    margin: 0 0 20px 0;
    font-weight: 700;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.cta-main p {
    font-size: 1.3em;
    color: #B0B0B0;
    margin: 0 0 40px 0;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 20px 50px;
    background: linear-gradient(135deg, #8A2BE2, #DA70D6);
    border: none;
    border-radius: 50px;
    color: #FFFFFF;
    font-size: 1.3em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.3);
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.4);
    background: linear-gradient(135deg, #9A3BF2, #EA80E6);
}

.cta-button:active {
    transform: translateY(-2px);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.feature-badge {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: #FFFFFF;
    font-size: 1em;
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-badge:hover {
    background: rgba(138, 43, 226, 0.2);
    border-color: rgba(138, 43, 226, 0.3);
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .requests-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .request-form-container {
        padding: 30px 20px;
    }
    
    .cta-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2.5em;
    }
    
    .cta-main h2 {
        font-size: 2.5em;
    }
    
    .cta-main p {
        font-size: 1.1em;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .feature-badge {
        display: inline-block;
    }
}

@media (max-width: 480px) {
    .feature-requests {
        padding: 60px 0;
    }
    
    .final-cta {
        padding: 80px 0;
    }
    
    .cta-main h2 {
        font-size: 2em;
    }
    
    .stat-number {
        font-size: 2em;
    }
    
    .cta-button {
        padding: 16px 30px;
        font-size: 1.1em;
    }
}
