.discord-hero {
    padding: 160px 40px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.discord-hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.discord-hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.discord-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 100px;
    font-size: 13px;
    color: #dc2626;
    font-weight: 500;
    margin-bottom: 32px;
}

.discord-hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.discord-hero-content > p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto;
}

.discord-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 40px 100px;
}

.discord-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.discord-widget {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 0;
    min-height: 100%;
}

.widget-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.widget-header i {
    color: #dc2626;
    font-size: 20px;
}

.widget-server-name {
    font-size: 16px;
    font-weight: 700;
    flex: 1;
}

.widget-online {
    font-size: 13px;
    color: #22c55e;
    font-weight: 600;
}

.widget-members {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.widget-members::-webkit-scrollbar {
    width: 4px;
}

.widget-members::-webkit-scrollbar-track {
    background: transparent;
}

.widget-members::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.widget-member {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 0;
}

.member-avatar-wrap {
    position: relative;
    flex-shrink: 0;
}

.member-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.member-status {
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #0a0a0f;
}

.status-online {
    background: #22c55e;
}

.status-idle {
    background: #f59e0b;
}

.status-dnd {
    background: #dc2626;
}

.member-name {
    font-size: 14px;
    color: #aaa;
    font-weight: 500;
}

.discord-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 0;
}

.discord-info-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s;
}

.discord-info-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.discord-info-icon {
    width: 40px;
    height: 40px;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc2626;
    font-size: 16px;
    margin-bottom: 14px;
}

.discord-info-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.discord-info-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.discord-join-btn {
    margin-top: 4px;
    justify-content: center;
}

.discord-join-btn:hover {
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

@media (max-width: 768px) {
    .discord-hero {
        padding: 120px 24px 40px;
    }

    .discord-hero h1 {
        font-size: 36px;
    }

    .discord-hero-content > p {
        font-size: 16px;
    }

    .discord-content {
        padding: 20px 24px 60px;
    }

    .discord-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .discord-widget {
        height: 400px;
        min-height: 0;
    }
}
