/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    background: #16151f;
    background-attachment: fixed;
    color: #ffffff;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}



.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    width: 100%;
    box-sizing: border-box;
}

/* Header */
.header {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    border-bottom: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 4px 30px rgba(139, 92, 246, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.8);
}

/* Candle Logo Styles */
.candle-logo {
    position: relative;
    width: 40px;
    height: 40px;
    margin-right: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: candlePump 2s ease-in-out infinite;
}

.candle-wick-top {
    width: 2px;
    height: 8px;
    background: linear-gradient(to top, #10b981, #34d399);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.8);
}

.candle-body {
    width: 24px;
    height: 28px;
    background: linear-gradient(135deg, #10b981 0%, #34d399 50%, #10b981 100%);
    border-radius: 2px;
    box-shadow: 
        0 0 20px rgba(16, 185, 129, 0.8),
        inset 2px 0 4px rgba(255, 255, 255, 0.3),
        inset -2px 0 4px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: candleGlow 1.5s ease-in-out infinite alternate;
}

.candle-body::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    height: 40%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
    border-radius: 1px;
}

.candle-wick-bottom {
    width: 2px;
    height: 4px;
    background: linear-gradient(to bottom, #10b981, #34d399);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.8);
}

.arrow-up {
    position: absolute;
    top: -8px;
    right: -8px;
    color: #10b981;
    font-size: 16px;
    text-shadow: 0 0 15px rgba(16, 185, 129, 1);
    animation: arrowPulse 1s ease-in-out infinite;
}

@keyframes candlePump {
    0%, 100% { 
        transform: translateY(0) scale(1);
    }
    50% { 
        transform: translateY(-3px) scale(1.05);
    }
}

@keyframes candleGlow {
    0% { 
        box-shadow: 
            0 0 20px rgba(16, 185, 129, 0.8),
            inset 2px 0 4px rgba(255, 255, 255, 0.3),
            inset -2px 0 4px rgba(0, 0, 0, 0.2);
    }
    100% { 
        box-shadow: 
            0 0 35px rgba(16, 185, 129, 1),
            0 0 50px rgba(16, 185, 129, 0.5),
            inset 2px 0 4px rgba(255, 255, 255, 0.4),
            inset -2px 0 4px rgba(0, 0, 0, 0.2);
    }
}

@keyframes arrowPulse {
    0%, 100% { 
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    50% { 
        transform: translateY(-5px) scale(1.2);
        opacity: 0.7;
    }
}

.bold {
    font-weight: 700;
}


/* Main Content */
.main-content {
    padding: 40px 0;
    position: relative;
}

/* Background Tweets */
.main-content::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    pointer-events: none;
}

.background-tweets {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.12;
    display: flex;
    gap: 20px;
    padding: 0 10px;
    overflow: hidden;
}

.background-tweets .tweets-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.background-tweets .tweets-column:nth-child(1) {
    animation: scrollUp 35s linear infinite;
}

.background-tweets .tweets-column:nth-child(2) {
    animation: scrollDown 40s linear infinite;
}

.background-tweets .tweets-column:nth-child(3) {
    animation: scrollUp 45s linear infinite;
}

.background-tweets .tweets-column:nth-child(4) {
    animation: scrollDown 38s linear infinite;
}

.background-tweets .tweets-column:nth-child(5) {
    animation: scrollUp 42s linear infinite;
}


.hero-section {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 40px;
    position: relative;
    z-index: 1;
}


.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 40px rgba(139, 92, 246, 0.3);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { text-shadow: 0 0 40px rgba(139, 92, 246, 0.3); }
    100% { text-shadow: 0 0 60px rgba(139, 92, 246, 0.5); }
}

.purple {
    color: #8b5cf6;
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.8);
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 30px;
    opacity: 0.9;
}


/* Promotion Form */
.promotion-form {
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(20px);
    padding: 30px;
    border-radius: 24px;
    max-width: 500px;
    margin: 0 auto;
    border: 2px solid rgba(139, 92, 246, 0.35);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(139, 92, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: visible;
    transition: all 0.3s ease;
}



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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #ffffff;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(42, 42, 42, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.3);
}

.form-group select option:disabled {
    color: #888;
    background-color: #1a1a1a;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 
        0 0 20px rgba(139, 92, 246, 0.4),
        inset 0 2px 10px rgba(0, 0, 0, 0.3);
    background: rgba(42, 42, 42, 0.8);
}

.form-group input:hover,
.form-group select:hover {
    border-color: rgba(139, 92, 246, 0.5);
}

.form-group input::placeholder {
    color: #888;
}

.promote-btn {
    width: 100%;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: #ffffff;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-top: 10px;
    box-shadow: 
        0 4px 15px rgba(139, 92, 246, 0.4),
        0 0 30px rgba(139, 92, 246, 0.2);
    position: relative;
    overflow: hidden;
}

/* Animated gradient background */
.promote-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, 
        transparent 25%, 
        rgba(255, 255, 255, 0.1) 25%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 50%, 
        transparent 75%, 
        rgba(255, 255, 255, 0.1) 75%, 
        rgba(255, 255, 255, 0.1));
    background-size: 50px 50px;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: moveStripes 1.5s linear infinite;
    z-index: 1;
}

@keyframes moveStripes {
    0% { background-position: 0 0; }
    100% { background-position: 50px 50px; }
}

/* Particles/sparkles effect */
.promote-btn::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: radial-gradient(circle at 20% 50%, rgba(16, 185, 129, 0.4) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.4) 0%, transparent 50%),
                radial-gradient(circle at 50% 20%, rgba(52, 211, 153, 0.3) 0%, transparent 50%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.4s ease;
    filter: blur(10px);
    z-index: -1;
}

.promote-btn span {
    position: relative;
    z-index: 2;
}

.promote-btn:hover::before {
    opacity: 1;
}

.promote-btn:hover::after {
    opacity: 1;
    animation: rotateGlow 3s linear infinite;
}

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

.promote-btn:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 12px 35px rgba(139, 92, 246, 0.7),
        0 0 70px rgba(139, 92, 246, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.promote-btn:active {
    transform: translateY(-2px) scale(0.98);
    transition: all 0.1s ease;
}

/* Stats Section */
.stats-section {
    text-align: center;
    margin-bottom: 100px;
    padding: 80px 0;
    position: relative;
    z-index: 1;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 40px;
    box-shadow: 
        0 8px 32px rgba(139, 92, 246, 0.2),
        0 0 0 1px rgba(139, 92, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 160px;
    gap: 20px;
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 0 20px;
}

.stat-card {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(139, 92, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    min-height: 0;
}

.stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 
        0 8px 30px rgba(139, 92, 246, 0.4),
        0 0 0 1px rgba(139, 92, 246, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.stat-card:hover::before {
    opacity: 1;
}

/* Différentes tailles de cartes */
.stat-large {
    grid-column: span 2;
    grid-row: span 2;
}

.stat-wide {
    grid-column: span 2;
    grid-row: span 1;
}

.stat-tall {
    grid-column: span 1;
    grid-row: span 2;
}

.stat-medium {
    grid-column: span 1;
    grid-row: span 1;
}

.stat-small {
    grid-column: span 1;
    grid-row: span 1;
}

/* Contenu des cartes */
.stat-icon {
    font-size: 40px;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.6));
    flex-shrink: 0;
}

.stat-large .stat-icon {
    font-size: 60px;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #8b5cf6;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
    flex-shrink: 0;
}

.stat-large .stat-number {
    font-size: 48px;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 5px;
    line-height: 1.2;
}

.stat-large .stat-label {
    font-size: 16px;
}

.stat-description {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.3;
    margin-top: 4px;
}

.stat-large .stat-description {
    font-size: 13px;
}

/* Updates & Roadmap Section */
.updates-section {
    text-align: center;
    margin-bottom: 100px;
    padding: 80px 0;
    position: relative;
    z-index: 1;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 40px;
    box-shadow: 
        0 8px 32px rgba(139, 92, 246, 0.2),
        0 0 0 1px rgba(139, 92, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.updates-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 0 20px;
    text-align: left;
}

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

.column-header {
    text-align: center;
    margin-bottom: 20px;
    padding: 30px;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 20px;
    border: 2px solid rgba(139, 92, 246, 0.3);
}

.header-icon {
    font-size: 50px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.6));
}

.column-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.column-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
}

.update-item {
    background: rgba(26, 26, 26, 0.9);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.update-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #8b5cf6 0%, #a78bfa 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.update-item:hover {
    transform: translateX(5px);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.update-item:hover::before {
    opacity: 1;
}

.update-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.update-badge.completed {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.update-badge.in-progress {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.update-badge.planned {
    background: rgba(139, 92, 246, 0.15);
    color: #a78bfa;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.update-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.update-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

.update-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.update-date {
    font-size: 13px;
    color: rgba(139, 92, 246, 0.8);
    font-weight: 600;
    margin-top: 5px;
}

/* FAQ Section */
.faq-section {
    text-align: center;
    margin: 120px auto 100px;
    padding: 80px 0;
    position: relative;
    z-index: 1;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 40px;
    box-shadow: 
        0 8px 32px rgba(139, 92, 246, 0.2),
        0 0 0 1px rgba(139, 92, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.faq-container {
    max-width: 900px;
    margin: 60px auto 0;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(26, 26, 26, 0.9);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.2);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #a78bfa;
}

.faq-question span {
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    font-size: 14px;
    color: #8b5cf6;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 30px;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
    opacity: 1;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* How It Works Section */
.how-it-works {
    text-align: center;
    margin: 80px 0 100px;
    padding: 100px 0 80px;
    position: relative;
    clear: both;
    z-index: 1;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 40px;
    box-shadow: 
        0 8px 32px rgba(139, 92, 246, 0.2),
        0 0 0 1px rgba(139, 92, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: visible;
}

/* Engrenages fixes qui tournent ensemble */
.gear {
    position: absolute;
    font-size: 60px;
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.6));
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
}

.gear-1 {
    top: 30px;
    left: 50px;
    animation: rotateClockwise 8s linear infinite;
}

.gear-2 {
    top: 30px;
    right: 50px;
    font-size: 70px;
    animation: rotateCounterClockwise 10s linear infinite;
}

.gear-3 {
    bottom: 30px;
    left: 50px;
    font-size: 50px;
    animation: rotateCounterClockwise 6s linear infinite;
}

.gear-4 {
    bottom: 30px;
    right: 50px;
    font-size: 65px;
    animation: rotateClockwise 9s linear infinite;
}

.gear-5 {
    top: 50%;
    left: 50%;
    font-size: 80px;
    animation: rotateCounterClockwiseCenter 12s linear infinite;
    opacity: 0.2;
}

@keyframes rotateClockwise {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes rotateCounterClockwise {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(-360deg);
    }
}

@keyframes rotateCounterClockwiseCenter {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: #ffffff;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    margin-top: 50px;
    box-shadow: 
        0 4px 20px rgba(139, 92, 246, 0.5),
        0 0 40px rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 8px 30px rgba(139, 92, 246, 0.6),
        0 0 60px rgba(139, 92, 246, 0.4);
}

.cta-button:hover::before {
    opacity: 1;
}

.cta-button i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateY(-3px);
}

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


.how-it-works .section-title {
    font-size: 32px;
}

.process-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px 100px;
    max-width: 1000px;
    margin: 20px auto 0;
    position: relative;
    padding: 20px 80px 60px 20px;
}

.process-step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Pas de décalage */

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
    position: relative;
    z-index: 3;
}

.step-card {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 20px;
    padding: 35px 30px;
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(139, 92, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    width: 100%;
    text-align: center;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 
        0 12px 40px rgba(139, 92, 246, 0.4),
        0 0 0 1px rgba(139, 92, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #a78bfa;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.step-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Ligne verticale à droite */
.process-line {
    position: absolute;
    right: 20px;
    top: 60px;
    bottom: 60px;
    width: 4px;
    background: linear-gradient(180deg, 
        rgba(139, 92, 246, 0.3) 0%,
        rgba(139, 92, 246, 0.6) 20%,
        rgba(139, 92, 246, 0.6) 80%,
        rgba(139, 92, 246, 0.3) 100%
    );
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
    z-index: 1;
}

/* Point animé qui suit le scroll */
.process-dot {
    position: absolute;
    left: 50%;
    top: 0;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%);
    border: 4px solid rgba(26, 26, 26, 0.95);
    border-radius: 50%;
    box-shadow: 
        0 0 40px rgba(139, 92, 246, 1),
        0 0 80px rgba(139, 92, 246, 0.8),
        0 0 120px rgba(139, 92, 246, 0.4),
        inset 0 0 10px rgba(255, 255, 255, 0.5);
    z-index: 10;
    transform: translate(-50%, -50%);
    transition: top 0.2s ease-out;
    pointer-events: none;
}

.process-dot::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.4) 0%, transparent 70%);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.3); opacity: 0.3; }
}

/* Illumination des cartes */
.step-card {
    transition: all 0.5s ease;
}

.step-card.illuminated {
    border-color: rgba(139, 92, 246, 0.8);
    box-shadow: 
        0 8px 40px rgba(139, 92, 246, 0.6),
        0 0 60px rgba(139, 92, 246, 0.4),
        inset 0 0 30px rgba(139, 92, 246, 0.1);
    transform: scale(1.02);
}

.connector-line {
    display: none;
}

/* Recently Promoted Section - Horizontal Ticker */
.recently-promoted {
    position: relative;
    margin: 30px 0 60px;
    padding: 30px 0;
    z-index: 1;
    overflow: hidden;
    width: 100%;
    background: rgba(26, 26, 26, 0.9);
    border-top: 1px solid rgba(139, 92, 246, 0.3);
    border-bottom: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
}

.recently-promoted::after {
    content: '';
    position: absolute;
    inset: -2px;
    padding: 2px;
    background: linear-gradient(90deg,
        transparent,
        transparent,
        #8b5cf6,
        #a78bfa,
        #c4b5fd,
        #a78bfa,
        #8b5cf6,
        transparent,
        transparent
    );
    background-size: 300% 300%;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    animation: neonMove 3s linear infinite;
    z-index: 10;
    border-radius: 22px;
}

.recently-promoted:hover::after {
    opacity: 1;
}

.recently-promoted-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
}

.ticker-wrapper {
    display: flex;
    overflow: hidden;
    padding: 20px 0;
    width: 100%;
    max-width: 100%;
}

.ticker-content {
    display: flex;
    gap: 0;
    animation: scroll 30s linear infinite;
    flex-shrink: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(139, 92, 246, 0.4);
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.3s ease;
    min-width: 280px;
    margin-right: 40px;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(139, 92, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.ticker-item:hover {
    background: rgba(26, 26, 26, 1);
    border-color: rgba(139, 92, 246, 0.7);
    transform: translateY(-3px);
    box-shadow: 
        0 8px 30px rgba(139, 92, 246, 0.5),
        0 0 0 1px rgba(139, 92, 246, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.token-avatar {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    border: 2px solid rgba(139, 92, 246, 0.4);
    flex-shrink: 0;
    transition: all 0.3s ease;
    object-fit: contain;
    object-position: center;
    background-color: #ffffff;
}

.ticker-item:hover .token-avatar {
    border-color: rgba(139, 92, 246, 0.8);
    transform: scale(1.05);
}

.token-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.token-name {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.token-mc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #ffffff;
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
}

.underlined {
    text-decoration: none;
    position: relative;
}

.underlined::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #8b5cf6, #a78bfa, #8b5cf6);
    background-size: 200% 100%;
    animation: underlineShimmer 2s ease-in-out infinite;
}

@keyframes underlineShimmer {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 0%; }
}


/* Tweets Showcase Section */
.tweets-showcase {
    text-align: center;
    margin: 80px 0;
    padding: 40px 0 100px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 40px;
    box-shadow: 
        0 8px 32px rgba(139, 92, 246, 0.2),
        0 0 0 1px rgba(139, 92, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.tweets-showcase::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 40px;
    padding: 2px;
    background: linear-gradient(90deg,
        transparent,
        transparent,
        #8b5cf6,
        #a78bfa,
        #c4b5fd,
        #a78bfa,
        #8b5cf6,
        transparent,
        transparent
    );
    background-size: 300% 300%;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    animation: neonMove 3s linear infinite;
    z-index: 10;
}

.tweets-showcase:hover::after {
    opacity: 1;
}


.section-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.tweets-container {
    display: flex;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    height: 600px;
    overflow: hidden;
}

.tweets-container::before,
.tweets-container::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 100px;
    z-index: 2;
    pointer-events: none;
}

.tweets-container::before {
    top: 0;
    background: linear-gradient(180deg, #0f0f23 0%, transparent 100%);
}

.tweets-container::after {
    bottom: 0;
    background: linear-gradient(0deg, #0f0f23 0%, transparent 100%);
}

.tweets-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.tweets-column.scroll-up {
    animation: scrollUp 40s linear infinite;
}

.tweets-column.scroll-down {
    animation: scrollDown 40s linear infinite;
}

@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

@keyframes scrollDown {
    0% {
        transform: translateY(-50%);
    }
    100% {
        transform: translateY(0);
    }
}

.tweets-column:hover {
    animation-play-state: paused;
}

.tweet {
    background: rgb(0, 0, 0);
    border: 1px solid rgb(47, 51, 54);
    border-radius: 0;
    padding: 12px 16px;
    min-height: 120px;
    transition: background 0.2s ease;
    flex-shrink: 0;
    position: relative;
}

.tweet:hover {
    background: rgba(255, 255, 255, 0.03);
}

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

.tweet-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.tweet-user-info {
    flex: 1;
    display: flex;
    align-items: baseline;
    gap: 4px;
    flex-wrap: wrap;
}

.tweet-name {
    font-weight: 700;
    color: rgb(231, 233, 234);
    font-size: 15px;
    line-height: 20px;
}

.tweet-name:hover {
    text-decoration: underline;
    cursor: pointer;
}

.tweet-handle {
    color: rgb(113, 118, 123);
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
}

.tweet-handle:hover {
    text-decoration: underline;
    cursor: pointer;
}

.tweet-icon {
    color: rgb(231, 233, 234);
    width: 18px;
    height: 18px;
    position: absolute;
    top: 12px;
    right: 16px;
    opacity: 0.7;
}

.tweet-content {
    color: rgb(231, 233, 234);
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 12px;
    margin-left: 52px;
    text-align: left;
    word-wrap: break-word;
}

.tweet-stats {
    display: flex;
    gap: 60px;
    margin-left: 52px;
    padding-top: 4px;
}

.tweet-stats span {
    display: flex;
    align-items: center;
    gap: 4px;
    color: rgb(113, 118, 123);
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    transition: color 0.2s ease;
}

.tweet-stats span:hover {
    color: rgb(29, 155, 240);
}

.tweet-stats span:hover i {
    color: rgb(29, 155, 240);
}

.tweet-stats i {
    font-size: 15px;
    color: rgb(113, 118, 123);
    transition: color 0.2s ease;
}

/* Payment Modal */
.payment-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

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

.payment-content {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 20px;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

.payment-header h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.close-payment {
    background: none;
    border: none;
    color: #888;
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.close-payment:hover {
    color: #ffffff;
}

.payment-info {
    text-align: center;
    margin-bottom: 25px;
}

.plan-selected {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 15px;
}

.plan-selected span:first-child {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
}

.plan-selected span:last-child {
    color: #8b5cf6;
    font-size: 20px;
    font-weight: 700;
}

.payment-description {
    color: #888;
    font-size: 14px;
    margin: 0;
}

.qr-container {
    text-align: center;
    margin-bottom: 25px;
}

.qr-code {
    margin-bottom: 20px;
}

.qr-code img {
    width: 180px;
    height: 180px;
    border-radius: 12px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    display: block;
    margin: 0 auto;
}

.address-container {
    display: flex;
    align-items: center;
    background: rgba(42, 42, 42, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    padding: 15px;
    gap: 10px;
}

.address-text {
    color: #ffffff;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', 'Courier New', monospace;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    word-break: break-all;
    flex: 1;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.copy-button {
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: 8px;
    color: #8b5cf6;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
}

.copy-button:hover {
    background: rgba(139, 92, 246, 0.3);
    color: #ffffff;
}

.copy-button.copied {
    background: rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.4);
    color: #10b981;
}

.payment-status {
    text-align: center;
}

.status-message {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.status-indicator {
    display: flex;
    justify-content: center;
}

.loading-dots {
    display: flex;
    gap: 4px;
}

.loading-dots span {
    width: 8px;
    height: 8px;
    background: #8b5cf6;
    border-radius: 50%;
    animation: loadingDots 1.4s infinite ease-in-out both;
}

.loading-dots span:nth-child(1) { animation-delay: -0.32s; }
.loading-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes loadingDots {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}


/* Responsive Design */
@media (max-width: 1024px) {
    .ticker-item {
        min-width: 260px;
        padding: 20px 25px;
    }
    
    .token-avatar {
        width: 55px;
        height: 55px;
    }
    
    .token-name {
        font-size: 18px;
    }
    
    .token-mc {
        font-size: 14px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 900px) {
    .ticker-item {
        min-width: 240px;
        padding: 18px 22px;
    }
    
    .token-avatar {
        width: 50px;
        height: 50px;
    }
    
    .token-name {
        font-size: 17px;
    }
    
    .token-mc {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .promotion-form {
        padding: 25px 15px;
        margin: 20px 10px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .form-group input,
    .form-group select {
        padding: 14px 16px;
        font-size: 16px;
        min-height: 48px;
        border-radius: 8px;
    }
    
    .promote-btn {
        padding: 18px 24px;
        font-size: 16px;
        min-height: 52px;
    }
    
    .header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .header-buttons {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .header-btn {
        padding: 12px 24px;
        font-size: 14px;
        min-width: 140px;
        min-height: 44px;
    }
    
    .recently-promoted {
        border-radius: 16px;
    }
    
    .ticker-item {
        padding: 12px 16px;
        gap: 10px;
        min-width: 200px;
        margin-right: 15px;
    }
    
    .token-avatar {
        width: 45px;
        height: 45px;
        border-radius: 10px;
    }
    
    .token-name {
        font-size: 14px;
    }
    
    .token-mc {
        font-size: 12px;
    }
    
    /* Tweets Showcase Responsive */
    .tweets-container {
        flex-direction: column;
        height: 600px;
        gap: 0;
        justify-content: center;
        align-items: center;
    }
    
    .tweets-column {
        width: 100%;
        max-width: 400px;
        height: 100%;
    }
    
    .tweets-column:not(:first-child) {
        display: none;
    }
    
    .tweets-column.scroll-down {
        animation: scrollUp 30s linear infinite;
    }
    
    /* Stats Section Responsive */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 100px;
        gap: 12px;
        padding: 20px 10px;
    }
    
    .stat-large {
        grid-column: span 2;
        grid-row: span 2;
    }
    
    .stat-wide {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .stat-tall {
        grid-column: span 1;
        grid-row: span 2;
    }
    
    .stat-medium,
    .stat-small {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .stat-icon {
        font-size: 40px;
        margin-bottom: 10px;
    }
    
    .stat-large .stat-icon {
        font-size: 55px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-large .stat-number {
        font-size: 42px;
    }
    
    .stat-label {
        font-size: 13px;
    }
    
    .stat-description {
        font-size: 11px;
    }
    
    /* How It Works Responsive */
    .process-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 20px;
    }
    
    .process-container::before {
        display: none;
    }
    
    .process-container::after {
        display: none;
    }
    
    .process-step::before {
        display: none !important;
    }
    
    .process-step:nth-child(1)::after,
    .process-step:nth-child(3)::after,
    .process-step:nth-child(5)::after {
        display: none;
    }
    
    .banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .banner-info {
        text-align: center;
    }
    
    /* Updates Section Responsive */
    .updates-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .column-header {
        padding: 25px;
    }
    
    .header-icon {
        font-size: 40px;
    }
    
    .column-title {
        font-size: 24px;
    }
    
    .update-item {
        padding: 20px;
    }
    
    /* FAQ Responsive */
    .faq-container {
        padding: 20px 10px;
    }
    
    .faq-question {
        padding: 15px 20px;
        font-size: 16px;
    }
    
    .faq-answer {
        padding: 0 20px 15px;
    }
    
    .faq-answer p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    /* Process Steps Responsive */
    .process-step {
        padding: 20px;
        margin-left: 40px;
    }
    
    .process-step h3 {
        font-size: 18px;
    }
    
    .process-step p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .hero-title {
        font-size: 24px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .promotion-form {
        padding: 20px 10px;
        margin: 15px 5px;
    }
    
    .recently-promoted {
        border-radius: 14px;
    }
    
    .ticker-item {
        padding: 10px 14px;
        gap: 8px;
        min-width: 180px;
        margin-right: 12px;
    }
    
    .token-avatar {
        width: 40px;
        height: 40px;
        border-radius: 8px;
    }
    
    .token-name {
        font-size: 13px;
    }
    
    .token-mc {
        font-size: 11px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 20px 10px;
        max-width: 100%;
    }
    
    .stat-large,
    .stat-wide,
    .stat-tall,
    .stat-medium,
    .stat-small {
        grid-column: span 1;
        grid-row: span 1;
        padding: 15px;
        min-height: 80px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .stat-description {
        font-size: 10px;
    }
    
    .header .container {
        padding: 10px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .header-btn {
        padding: 10px 20px;
        font-size: 12px;
        min-width: 120px;
        min-height: 40px;
    }
    
    
    /* FAQ Mobile */
    .faq-container {
        padding: 15px 5px;
    }
    
    .faq-question {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .faq-answer {
        padding: 0 15px 12px;
    }
    
    .faq-answer p {
        font-size: 13px;
    }
    
    /* Process Steps Mobile */
    .process-step {
        padding: 15px;
        margin-left: 30px;
    }
    
    .process-step h3 {
        font-size: 16px;
    }
    
    .process-step p {
        font-size: 13px;
    }
    
    /* Tweets Mobile */
    .tweets-container {
        height: 500px;
        padding: 15px 5px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .tweets-column {
        width: 100%;
        max-width: 350px;
        height: 100%;
    }
    
    .tweets-column:not(:first-child) {
        display: none;
    }
    
    .tweet {
        padding: 15px;
        margin-bottom: 10px;
    }
    
    .tweet-content {
        font-size: 14px;
    }
    
}
