/* ==================== STYLE MEE6 ==================== */

/* Variables MEE6 */
:root {
    --mee6-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --mee6-gradient-alt: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --mee6-bg: #0d1117;
    --mee6-card-bg: #161b22;
    --mee6-border: #21262d;
}

/* Hero Section MEE6 */
.hero-mee6 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 5% 80px;
    overflow: hidden;
    background: var(--mee6-bg);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}

.hero-content-wrapper {
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge-mee6 {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 20px;
    margin-bottom: 24px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #667eea;
}

.hero-title-mee6 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.gradient-text-mee6 {
    background: var(--mee6-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description-mee6 {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-actions-mee6 {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.btn-mee6 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-mee6-primary {
    background: var(--mee6-gradient);
    color: white;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
}

.btn-mee6-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.6);
}

.btn-mee6-secondary {
    background: var(--mee6-card-bg);
    color: var(--text-primary);
    border: 1px solid var(--mee6-border);
}

.btn-mee6-secondary:hover {
    background: var(--bg-hover);
    border-color: #667eea;
}

.btn-mee6-sm {
    padding: 12px 24px;
    font-size: 0.9rem;
}

.btn-mee6-lg {
    padding: 20px 40px;
    font-size: 1.1rem;
}

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

.hero-stats-mee6 {
    display: flex;
    align-items: center;
    gap: 32px;
    padding-top: 40px;
    border-top: 1px solid var(--mee6-border);
}

.stat-mee6 {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-value-mee6 {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--mee6-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label-mee6 {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--mee6-border);
}

/* Hero Image MEE6 */
.hero-image-mee6 {
    position: relative;
    animation: fadeInRight 0.8s ease-out;
}

.discord-mockup {
    background: var(--mee6-card-bg);
    border: 1px solid var(--mee6-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.discord-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.mockup-header-discord {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #2f3136;
    border-bottom: 1px solid var(--mee6-border);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #72767d;
}

.mockup-dots span:nth-child(1) { background: #ed4245; }
.mockup-dots span:nth-child(2) { background: #faa61a; }
.mockup-dots span:nth-child(3) { background: #43b581; }

.mockup-channel-name {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #8e9297;
    font-weight: 600;
    font-size: 0.9rem;
}

.mockup-messages {
    padding: 24px;
    background: #36393f;
    min-height: 300px;
}

.mockup-message-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.mockup-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
}

.mockup-message-content {
    flex: 1;
}

.mockup-username {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.bot-badge {
    background: #5865F2;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: 4px;
}

.mockup-text {
    color: #dcddde;
    line-height: 1.5;
    font-size: 0.9rem;
}

.mockup-text code {
    background: rgba(0, 0, 0, 0.3);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: #f04747;
}

/* Features Section MEE6 */
.features-section-mee6 {
    background: var(--mee6-bg);
    padding: 120px 5%;
}

.feature-block-mee6 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.feature-block-mee6:last-child {
    margin-bottom: 0;
}

.feature-block-reverse {
    direction: rtl;
}

.feature-block-reverse > * {
    direction: ltr;
}

.feature-image-wrapper {
    position: relative;
}

.feature-image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--mee6-card-bg);
    border: 1px solid var(--mee6-border);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    background: var(--mee6-gradient);
    opacity: 0.8;
    color: white;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
    transition: transform 0.3s ease;
}

.feature-image-placeholder:hover {
    transform: scale(1.05);
}

.feature-content-wrapper {
    padding: 40px 0;
}

.feature-title-mee6 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
    line-height: 1.2;
}

.feature-description-mee6 {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.feature-list-mee6 {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.feature-list-mee6 li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 1rem;
    color: var(--text-secondary);
}

.feature-list-mee6 li i {
    color: #43b581;
    font-size: 0.9rem;
}

/* CTA Final Section */
.cta-final-mee6 {
    background: var(--mee6-card-bg);
    border-top: 1px solid var(--mee6-border);
    padding: 120px 5%;
    text-align: center;
}

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

.cta-title-mee6 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
    background: var(--mee6-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description-mee6 {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-container {
        gap: 60px;
    }
    
    .feature-block-mee6 {
        gap: 60px;
    }
    
    .hero-title-mee6 {
        font-size: 3rem;
    }
    
    .feature-title-mee6 {
        font-size: 2rem;
    }
}

@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-description-mee6 {
        max-width: 100%;
    }
    
    .hero-actions-mee6 {
        justify-content: center;
    }
    
    .hero-stats-mee6 {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .feature-block-mee6 {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 80px;
    }
    
    .feature-block-reverse {
        direction: ltr;
    }
    
    .feature-image-placeholder {
        font-size: 5rem;
    }
    
    .hero-title-mee6 {
        font-size: 2.5rem;
    }
    
    .cta-title-mee6 {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .hero-mee6 {
        padding: 100px 5% 60px;
    }
    
    .hero-title-mee6 {
        font-size: 2rem;
    }
    
    .hero-description-mee6 {
        font-size: 1rem;
    }
    
    .btn-mee6 {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
    
    .stat-value-mee6 {
        font-size: 2rem;
    }
    
    .feature-title-mee6 {
        font-size: 1.75rem;
    }
    
    .feature-description-mee6 {
        font-size: 1rem;
    }
    
    .features-section-mee6 {
        padding: 80px 5%;
    }
    
    .cta-final-mee6 {
        padding: 80px 5%;
    }
}

